blog/templates/tags/single.html

18 lines
497 B
HTML
Raw Normal View History

2019-03-28 00:44:39 +00:00
{% 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) }}
2019-03-28 01:04:55 +00:00
<p style="text-align: center;">
<small><a href="{{ term.permalink }}rss.xml">click here for RSS feed</a></small>
</p>
2019-03-28 00:44:39 +00:00
{% endblock %}