summaryrefslogtreecommitdiff
path: root/blog/plt/tag.html
blob: 2203f33a2cb7fb8c40f3cd7b785d49c6eb70a7d1 (plain)
1
2
3
4
5
6
7
8
9
10
{%extends "base.html"%}
{%block html_lang%}en{%endblock html_lang%}
{%block head_title%}Posts filtered by {{tag[0]}}{%endblock head_title%}
{%block content%}
  <h1>Posts filtered by {{tag[0]}}</h1>

  {%import "page_list.html" as page_list%}
  {{page_list.print(tag_pages)}}

{%endblock content%}