summaryrefslogtreecommitdiff
path: root/art/plt/tag.html
diff options
context:
space:
mode:
Diffstat (limited to 'art/plt/tag.html')
-rw-r--r--art/plt/tag.html20
1 files changed, 20 insertions, 0 deletions
diff --git a/art/plt/tag.html b/art/plt/tag.html
new file mode 100644
index 0000000..d379590
--- /dev/null
+++ b/art/plt/tag.html
@@ -0,0 +1,20 @@
+{%extends "base.html"%}
+{%block html_lang%}en{%endblock html_lang%}
+{%block head_title%}Posts filtered by {{tag[0]}}{%endblock head_title%}
+{%block head_description%}Posts filtered by {{tag[0]}}{%endblock head_description%}
+{%block head_og%}
+ <meta property="og:title" content="Posts filtered by {{tag[0]}} -- {{config.title}}"/>
+ <meta property="og:type" content="article"/>
+ <meta property="og:url" content="{{tag[1]}}"/>
+ <meta property="og:image" content="{{config.static_url}}{{config.default_image_url}}"/>
+ <meta property="og:description" content="Posts filtered by {{tag[0]}}."/>
+ <meta property="og:locale" content="en"/>
+ <meta property="og:site_name" content="{{config.title}}"/>
+{%endblock head_og%}
+{%block content%}
+ <h1>Posts filtered by {{tag[0]}}</h1>
+
+ {%import "page_list.html" as page_list%}
+ {{page_list.print(tag_pages)}}
+
+{%endblock content%}