summaryrefslogtreecommitdiff
path: root/src/pyssg/plt/default.yaml
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/default.yaml
parent36c5ee34f7bbc903fa97451dfd42b2b915ea83ab (diff)
refactor: simplify page rendering
Diffstat (limited to 'src/pyssg/plt/default.yaml')
-rw-r--r--src/pyssg/plt/default.yaml15
1 files changed, 9 insertions, 6 deletions
diff --git a/src/pyssg/plt/default.yaml b/src/pyssg/plt/default.yaml
index cca0fbc..9be299a 100644
--- a/src/pyssg/plt/default.yaml
+++ b/src/pyssg/plt/default.yaml
@@ -14,15 +14,18 @@ fmt:
date: "%a, %b %d, %Y @ %H:%M %Z"
rss_date: "%a, %d %b %Y %H:%M:%S GMT"
sitemap_date: "%Y-%m-%d"
+ list_date: "%b %d"
+ list_sep_date: "%Y"
info:
version: "0.0.0"
...
---
dir: "/"
-plt: "page.html"
-tags: False
-tags_prefix: ''
-index: False
-rss: False
-sitemap: False
+plt:
+ page: "page.html"
+ index: "page_index.html"
+ tags: "tag_index.html"
+ rss: "rss.xml"
+ sitemap: "sitemap.xml"
+tags_prefix: '@'
...