summaryrefslogtreecommitdiff
path: root/src/pyssg/plt/page_index.html
blob: 677005c21e83dafce290353c5a9e764834d42e4a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{%extends "base.html"%}
{%block head_title%}
  <title>Index -- {{config['title']}}</title>
{%endblock head_title%}

{%block body_content%}
  <h1>Index -- {{config['title']}}</h1>
  <p>Some text here</p>

  {%import "tag_list.html" as tag_list%}
  {{tag_list.print(all_tags, config['tags_prefix'])}}

  {%import "page_list.html" as page_list%}
  {{page_list.print("Articles", all_pages)}}
{%endblock body_content%}