From b835dcf3a64ec236ad83c30a79c64f0d1db1ebaf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stig-=C3=98rjan=20Smelror?= Date: Sun, 28 Jan 2024 19:39:12 +0100 Subject: [PATCH] Initial commit for the config file --- config | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 config diff --git a/config b/config new file mode 100644 index 0000000..a925f9a --- /dev/null +++ b/config @@ -0,0 +1,14 @@ +# This is the name of your site +export site_name="The Site Name" +# At the moment, there is only 1 theme - minimal +export theme=minimal +# This is the directory where you create your pages and blogs. +# Your project working directory +export project_dir=/path/to/your/project +# This is where qsgen2 outputs the parsed and generated files +export www_root=/path/to/output/directory +# Do you want the blog on your front page or not? +# Values are true for yes and false for no +export blog_in_index=false +# Expected values are 'native' or 'markdown' +export generator=native