Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/zwbetz-gh/papercss-hugo-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'exampleSite/config.toml')
-rw-r--r--exampleSite/config.toml43
1 files changed, 43 insertions, 0 deletions
diff --git a/exampleSite/config.toml b/exampleSite/config.toml
new file mode 100644
index 0000000..5ff7589
--- /dev/null
+++ b/exampleSite/config.toml
@@ -0,0 +1,43 @@
+baseURL = "https://example.com"
+languageCode = "en-us"
+defaultContentLanguage = "en"
+title = "PaperCSS"
+theme = "papercss-hugo-theme"
+googleAnalytics = "UA-123456789-1"
+
+[taxonomies]
+ tag = "tags"
+
+[permalinks]
+ post = "/:filename/"
+
+[imaging]
+ quality = 99
+
+[params]
+ description = "A Hugo theme made with [PaperCSS](https://www.getpapercss.com/), the less formal CSS framework."
+ homeMetaContent = "A Hugo theme made with PaperCSS, the less formal CSS framework."
+ # For more date formats see https://gohugo.io/functions/format/
+ dateFormat = "Jan 2, 2006"
+
+[menu]
+ [[menu.nav]]
+ name = "Home"
+ url = "/"
+ weight = 1
+ [[menu.nav]]
+ name = "Blog"
+ url = "/post/"
+ weight = 2
+ [[menu.nav]]
+ name = "Tags"
+ url = "/tags/"
+ weight = 3
+ [[menu.nav]]
+ name = "About"
+ url = "/about/"
+ weight = 4
+ [[menu.nav]]
+ name = "RSS"
+ url = "/index.xml"
+ weight = 5