{% extends 'base.html' %} {% block content %}
{% for article in result %}
作者:{{ article.user.nickname }}   类别:{{ article_type[article.type | string] }}    日期:{{ article.createtime }}   阅读:{{ article.readcount }} 次   消耗积分:{{ article.credit }} 分
{{article.content | striptags | truncate(80) }}
{% endfor %}
{% if page == 1 %} 上一页   {% else %} 上一页   {% endif %} {% for i in range(1,total+1) %} {{i}}   {% endfor %} {% if page == total %} 下一页   {% else %} 下一页   {% endif %}
{# 按需引入side.html,首页需要 #} {% include 'side.html' %} {% endblock %} {# 定义插入内容结束 #}