aboutsummaryrefslogtreecommitdiff
path: root/generators/hugo/config.toml
diff options
context:
space:
mode:
Diffstat (limited to 'generators/hugo/config.toml')
-rw-r--r--generators/hugo/config.toml43
1 files changed, 43 insertions, 0 deletions
diff --git a/generators/hugo/config.toml b/generators/hugo/config.toml
new file mode 100644
index 0000000..855fcc0
--- /dev/null
+++ b/generators/hugo/config.toml
@@ -0,0 +1,43 @@
+baseurl = "/posts/"
+title = "Edwin Mattiacci - Posts"
+languageCode = "en-us"
+disableKinds = ["404"]
+
+# Pagination
+paginate = 3
+paginatePath = "page"
+
+# Theme to use
+theme = "edwin"
+
+[taxonomies]
+ tag = "tags"
+ category = "categories"
+
+# Links format
+
+[permalinks]
+ post = "/:year/:month/:title/"
+
+[params]
+ # Main sections (currently used for the recent posts in the sidebar)
+ mainSections = ["post"]
+
+ # Default author
+ author = "Edwin Mattiacci"
+
+ # Date format (default: Jan 2, 2006)
+ # date_format = "Jan 2, 2006"
+
+ # Display post summaries instead of content in list templates (default: true)
+ # truncate = false
+
+ [params.sidebar]
+ # Whether to show the recent posts or not (default: true)
+ # showRecent = false
+
+ # Whether to show the taxonomies or not (default: true)
+ # showTaxonomy = false
+
+ # How many posts to show on the sidebar (Default: 5)
+ # num_recent_posts = 5