14 lines
294 B
HTML
14 lines
294 B
HTML
{% extends "base.html" %}
|
|
{% block title %}{{ tag }} - {{ SITENAME }}{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
<h1>Post tagged: {{ tag }}</h1>
|
|
|
|
{% for article in articles_page.object_list %}
|
|
{% include 'article_summary.inc.html' %}
|
|
{% endfor %}
|
|
|
|
{% include 'pagination.inc.html' %}
|
|
|
|
{% endblock %} |