{% extends 'base.html' %} {% block main %}
{% for i in range(articles | length) %}
{{ articles[i]['authorName'] }}
{{ articles[i]['authorDescribe'] }}
{% endfor %}
{% if select == 'search' %}
{% if page > 1 %}

{% endif %}

当前为第 {{ page }} 页

{% if not isLast %}

{% endif %}
{% elif select == 'history' %}
{% if page > 1 %}

{% endif %}

当前为第 {{ page }} 页

{% if not isLast %}

{% endif %}
{% elif select in ['announce', 'activity', 'information'] %}
{% if page > 1 %}

{% endif %}

当前为第 {{ page }} 页

{% if not isLast %}

{% endif %}
{% else %}
{% if page > 1 %}

{% endif %}

当前为第 {{ page }} 页

{% if not isLast %}

{% endif %}
{% endif %}
{% endblock %}