{% extends "base.html" %} {% block title %}文章列表{%endblock%} {% block bc %} {% endblock %} {% block content %} {%if params.msg.is_some() %} {% endif %} {% for item in list %} {% let (article, category) = item %} {% endfor %}
# 标题 分类 时间 操作
{{ article.id }} {{ article.title }} {% match category%} {% when Some with(category)%} {{ category.name }} {% when None %} 没有分类 {% endmatch %} {{ article.dateline }} 作业
{%endblock%}