You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
1.1 KiB

{% extends 'base.html' %}
{% block title %}论坛首页111{% endblock %}
{% block main %}
<h1>文章列表</h1>
<div class="row row-cols-2 row-gap-4">
{% for blog in blogs %}
<div class="col">
<div class="card">
<div class="card-header">
<a href="{% url 'blog:blog_detail' blog_id=blog.id %}">{{ blog.title }}</a>
</div>
<div class="card-body" style="height: 140px">
<p class="card-text">{{ blog.content|striptags|truncatechars:200 }}</p>
</div>
<div class="card-footer text-body-secondary d-flex justify-content-between">
<div>
<img src="{% static 'image/profile.png' %}" class="rounded-circle " width="30" height="30" alt="">
{{ blog.author.username }}
</div>
<div>发布时间:{{ blog.pub_time|date:"Y年m月d日 H时i分" }}</div>
</div>
</div>
</div>
{% endfor %}
</div>
{% endblock %}