{% extends 'base.html' %} {% block container %}
{% include "partial/breadcrumb.html" %}
参数筛选:
{% archiveFilters filters with allText="默认" %} {% for item in filters %}
  • {{item.Name}}:
  • {% for val in item.Items %}
  • {{val.Label}}
  • {% endfor %}
{% endfor %} {% endarchiveFilters %}
{% archiveList articles with type="page" limit="10" %} {% endarchiveList %}
{% pagination pages with show="4" %}
{{pages.FirstPage.Name}} {% if pages.PrevPage %} {{pages.PrevPage.Name}} {% endif %} {% for item in pages.Pages %} {{item.Name}} {% endfor %} {% if pages.NextPage %} {{pages.NextPage.Name}} {% endif %} {{pages.LastPage.Name}}
{% endpagination %}
{% categoryList categories %} {% endcategoryList %}
为您推荐
    {% archiveList popularArticles with type="list" order="views desc" limit="6" %}
      {% for item in popularArticles %}
    • {{item.Title}}
    • {% empty %}
    • 无为您推荐
    • {% endfor %}
    {% endarchiveList %}
{% endblock %}