20 lines
415 B
HTML
20 lines
415 B
HTML
|
{% extends "layout/default.html" %}
|
||
|
|
||
|
{% block title%}{{ tag.name }} posts{% endblock %}
|
||
|
|
||
|
{% block content -%}
|
||
|
|
||
|
<h1 class="page-heading">{{ tag.name }} posts</h1>
|
||
|
<p class="rss">
|
||
|
Subscribe to just {{ tag.name }} posts via <a href="/{{ tag.slug }}/feed.xml">RSS</a>.
|
||
|
</p>
|
||
|
|
||
|
{% for post in posts %}
|
||
|
{% include "includes/article-listing.html" %}
|
||
|
{% endfor %}
|
||
|
|
||
|
{% include "includes/pagination.html" %}
|
||
|
|
||
|
{%- endblock %}
|
||
|
|