summaryrefslogtreecommitdiff
path: root/src/pyssg/plt/tag.html
diff options
context:
space:
mode:
Diffstat (limited to 'src/pyssg/plt/tag.html')
-rw-r--r--src/pyssg/plt/tag.html26
1 files changed, 0 insertions, 26 deletions
diff --git a/src/pyssg/plt/tag.html b/src/pyssg/plt/tag.html
deleted file mode 100644
index bf15c0d..0000000
--- a/src/pyssg/plt/tag.html
+++ /dev/null
@@ -1,26 +0,0 @@
-<!DOCTYPE html>
-<html lang="en">
- <head>
- <meta charset="utf-8">
- <base href="{{config['url']['static']}}">
- <title>Posts filtered by {{tag[0]}} -- {{config['title']}}</title>
- </head>
- <body>
- <h1>Posts filtered by {{tag[0]}}</h1>
- <p>Some text here.</p>
-
- <h2>Articles</h2>
- <ul>
- {%for p in tag_pages%}
- {%if loop.previtem%}
- {%if loop.previtem.date(loop.previtem.cts, 'list_sep_date') != p.date(p.cts, 'list_sep_date')%}
- <h3>{{p.date(p.cts, 'list_sep_date')}}</h3>
- {%endif%}
- {%else%}
- <h3>{{p.date(p.cts, 'list_sep_date')}}</h3>
- {%endif%}
- <li>{{p.date(p.cts, 'list_date')}} - <a href="{{p.url}}">{{p.title}}</a></li>
- {%endfor%}
- </ul>
- </body>
-</html>