{% extends "Skins/default/basepage.html"%} {% block title%} 首页 {% endblock %} {% block content %}
{% if currentCategory %}
{{currentCategory.name}}
{% endif %} {% if articleList %} {% for articleInfo in articleList%}
{{articleInfo.summary|striptags}}
{{articleInfo.username}}  ┆  {{articleInfo.createtime|date:"Y-m-d H:i:s"}}  ┆  阅读({{articleInfo.views}})  ┆  评论({{articleInfo.comments}})  ┆  支持({{articleInfo.goods}})  ┆  反对({{articleInfo.bads}}) {% if userInfos.isme%}   ┆  编辑 {% endif %}
{% endfor %} {% endif %}
{% endblock %}