{% extends "_common/base.html" %} {% block css %} {% load avatar_tags %} {% load day_util %} {% endblock %} {% block container %}

动态

{% for item in articles_new %} {% if item.type == 1 %}
{{ item.created_time | days_until }}
{{ item.intro }}    Tags: {% for tag in item.tags %} {{ tag }} {% endfor %}
{% elif item.type == 2 %}
{{ item.created_time | days_until }}
{% autoescape off %}
{{ item.html_text }}
{% endautoescape %}
{% endif %} {% endfor %} {% if is_login %}

发布动态

{% csrf_token %}
发布
{% endif %}

归档

{% for record in records %} {{ record.datetime }} ({{ record.count }}) {% endfor %}

Top

{% for tag in tags %} {{ tag.name }} ({{ tag.count }}) {% endfor %}
{% endblock %} {% block js %} {% if is_login %} {% endif %} {% endblock %} {% load static %}