{% block head-js %} {% endblock %}
{% block page-container %}
{% for article in articles reversed %}

{{ article.title }}

  • {{ article.author.name }}
  • {{ article.publish_date }}
  • thumbup:{{ article.thumbup_set.select_related.count }}
  • comments:{{ article.comment_set.select_related.count }}

{{ article.summary }}


{% endfor %}
{% endblock %}
{% block bottom-js %} {% endblock %}