summaryrefslogtreecommitdiff
path: root/src/pyssg/plt/page_index.html
diff options
context:
space:
mode:
Diffstat (limited to 'src/pyssg/plt/page_index.html')
-rw-r--r--src/pyssg/plt/page_index.html15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/pyssg/plt/page_index.html b/src/pyssg/plt/page_index.html
new file mode 100644
index 0000000..70639b2
--- /dev/null
+++ b/src/pyssg/plt/page_index.html
@@ -0,0 +1,15 @@
+{%extends "base.html"%}
+{%block head_title%}
+ <title>Index -- {{config['title']}}</title>
+{%endblock head_title%}
+
+{%block body_content%}
+ <h1>Index -- {{config['title']}}</h1>
+ {{page.content}}
+
+ {%import "tag_list.html" as tag_list%}
+ {{tag_list.print(all_tags)}}
+
+ {%import "page_list.html" as page_list%}
+ {{page_list.print("Articles", all_pages)}}
+{%endblock body_content%}