-
{% if current_sort == 1 %}
- 最新 {% else %}
- 最新 {% endif %} {% if current_sort == 2 %}
- 精华帖子 {% else %}
- 精华帖子 {% endif %} {% if current_sort == 3 %}
- 点赞最多 {% else %}
- 点赞最多 {% endif %} {% if current_sort == 4 %}
- 评论最多 {% else %}
- 评论最多 {% endif %}
-
{% for post in posts %}
-
{{ post.title | truncate(20) }} {% if post.highlight %} 精华帖 {% endif %}
作者:{{ post.author.username | truncate(6) }} 发表时间:{{ post.create_time }} 阅读:{{ post.read_count }} 点赞:{{ post.like_count }} 评论:{{ post.comment_count }}
{% endfor %}
{{ pagination.links }}
{% if show_all %}
所有板块
{% else %}
所有板块
{% endif %}
{% for board in boards %}
{% if current_board == board.id %}
{{ board.name }}
{% else %}
{{ board.name }}
{% endif %}
{% endfor %}