tag.html 294 B

1234567891011121314
  1. {% extends "base.html" %}
  2. {% block title %}{{ tag }} - {{ SITENAME }}{% endblock %}
  3. {% block content %}
  4. <h1>Post tagged: {{ tag }}</h1>
  5. {% for article in articles_page.object_list %}
  6. {% include 'article_summary.inc.html' %}
  7. {% endfor %}
  8. {% include 'pagination.inc.html' %}
  9. {% endblock %}