summaryrefslogtreecommitdiff
path: root/src/pyssg/plt/page_index.html
diff options
context:
space:
mode:
authorDavid Luevano Alvarado <david@luevano.xyz>2023-08-29 01:08:42 -0600
committerDavid Luevano Alvarado <david@luevano.xyz>2023-08-29 01:08:42 -0600
commit8e9c537b10b6da23724dc5df384ecc2cfd6b7f88 (patch)
treeb6d1f7ea947867020e867fe41e1ed63c5749a231 /src/pyssg/plt/page_index.html
parent36c5ee34f7bbc903fa97451dfd42b2b915ea83ab (diff)
refactor: simplify page rendering
Diffstat (limited to 'src/pyssg/plt/page_index.html')
-rw-r--r--src/pyssg/plt/page_index.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pyssg/plt/page_index.html b/src/pyssg/plt/page_index.html
index 70639b2..677005c 100644
--- a/src/pyssg/plt/page_index.html
+++ b/src/pyssg/plt/page_index.html
@@ -5,10 +5,10 @@
{%block body_content%}
<h1>Index -- {{config['title']}}</h1>
- {{page.content}}
+ <p>Some text here</p>
{%import "tag_list.html" as tag_list%}
- {{tag_list.print(all_tags)}}
+ {{tag_list.print(all_tags, config['tags_prefix'])}}
{%import "page_list.html" as page_list%}
{{page_list.print("Articles", all_pages)}}