From e8d60d0d26e678dbf849ab6ce01f4c92efe1d8ff Mon Sep 17 00:00:00 2001 From: Guy Godfroy Date: Thu, 3 Dec 2020 17:06:52 +0100 Subject: [PATCH] WIP: add meta pages --- config.py.example | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/config.py.example b/config.py.example index ad05373..74ed6d2 100644 --- a/config.py.example +++ b/config.py.example @@ -5,10 +5,14 @@ locale = "fr_FR.utf8" # path to directory containing markdonw files to convert -md_dir = "~/repo/htg-content/content/posts" +md_dir = "/srv/my-site-content/posts" # path to directory where gemini files will be exported -gmi_dir = "/tmp/gemini" +gmi_dir = "/srv/gemini/my-site/posts" + +# path to directory where meta pages will be generated +# such as home page, tags list, tag pages, author pages... +meta_dir = "/srv/gemini/my-site" # path to directory containing templates tpl_dir = "~/repo/htg-content/gemini/templates"