blog/templates/tags/single.html

18 lines
497 B
HTML

{% extends "layout.html" %}
{% import "macros/blog.html" as blog %}
{% block title %}
articles under {{ term.name }} - {{ config.title }}
{% endblock %}
{% block content %}
<a href="../">&laquo; back to tags</a>
<h1 style="margin: 0;">articles under <code>{{ term.name }}</code></h1>
<p></p>
{{ blog::postlisting(posts=term.pages) }}
<p style="text-align: center;">
<small><a href="{{ term.permalink }}rss.xml">click here for RSS feed</a></small>
</p>
{% endblock %}