summaryrefslogtreecommitdiff
path: root/config.toml
diff options
context:
space:
mode:
Diffstat (limited to 'config.toml')
-rw-r--r--config.toml116
1 files changed, 76 insertions, 40 deletions
diff --git a/config.toml b/config.toml
index 7e7976a..9d1d0c5 100644
--- a/config.toml
+++ b/config.toml
@@ -1,79 +1,115 @@
baseURL = "http://www.andreasbaumann.cc/"
languageCode = "en-us"
title = "Andreas Baumann's Personal Home Page"
+paginate = "10" # Number of posts per page
theme = "new_theme"
disableRss = true
-enableRobotsTXT = true
-SectionPagesMenu = "main"
+disqusShortname = "" # Enable comments by entering your Disqus shortname
+googleAnalytics = "" # Enable Google Analytics by entering your tracking id
[Params]
- author = "Andreas Baumann"
+ # author = "Andreas Baumann"
description = "Andreas Baumann's Personal Home Page"
toptitle = "Andreas Baumann's"
subtitle = "Personal Home Page"
location = "Zurich"
- copyright_years = "2009 - 2018"
+ copyright_years = "2009 - 2023"
opengraph = true
+ authorbox = false # Show "Read more" button in list if true
+ twitter_cards = false
strus_url = "http://eeepc.home:8080/strus/query/wwwandreasbaumanncc"
+ pager = true
+ post_meta = ["date", "categories"] # Order of post meta information
+ mathjax = false
+ customCSS = [ "css/localstyle.css" ]
+ # customJS = [ "/js/jquery.js" ] # doesn't work, added directly to baseof.html
+[Params.logo]
+ subtitle = "Personal Home Page" # Logo subtitle
+
[Params.widgets]
search = true
recent_articles = true
categories = true
tags = true
+ recent_num = 5 # Set the number of articles in the "Recent articles" widget
+ tags_counter = false # Enable counter for each tag in "Tags" widget (disabled by default)
+
+[Params.sidebar]
+ home = "right" # Configure layout for home page
+ list = "right" # Configure layout for list pages
+ single = "right" # Configure layout for single pages
+ # Enable widgets in given order
+ widgets = ["dataprotection", "fts5_search", "recent", "categories"]
[taxonomies]
-category = "categories"
+ category = "categories"
+
+[[menu.main]]
+ name = "Home"
+ weight = 30
+ identifier = "home"
+ url = "/"
[[menu.main]]
- name = "Home"
- weight = 30
- identifier = "home"
- url = "/"
+ name = "Software"
+ weight = 40
+ identifier = "software"
+ url = "/software"
[[menu.main]]
- name = "Software"
- weight = 40
- identifier = "software"
- url = "/software"
+ name = "Hardware"
+ weight = 50
+ identifier = "hardware"
+ url = "/hardware"
[[menu.main]]
- name = "Toolbox"
- weight = 50
- identifier = "toolbox"
- url = "/toolbox"
+ name = "Toolbox"
+ weight = 60
+ identifier = "toolbox"
+ url = "/toolbox"
[[menu.main]]
- name = "Git"
- weight = 60
- identifier = "git"
- url = "/git"
+ name = "Git"
+ weight = 70
+ identifier = "git"
+ url = "/git"
[[menu.main]]
- name = "Slides"
- weight = 70
- identifier = "slide"
- url = "/slide"
+ name = "Slides"
+ weight = 80
+ identifier = "slide"
+ url = "/slide"
[[menu.main]]
- name = "Blog"
- weight = 80
- identifier = "blog"
- url = "/blog"
+ name = "Blog"
+ weight = 90
+ identifier = "blog"
+ url = "/blog"
[[menu.main]]
- name = "Search"
- weight = 90
- identifier = "search"
- url = "/search"
+ name = "Search"
+ weight = 100
+ identifier = "search"
+ url = "/search"
[[menu.main]]
- name = "Contact"
- weight = 100
- identifier = "contact"
- url = "/contact"
+ name = "Contact"
+ weight = 110
+ identifier = "contact"
+ url = "/contact"
[outputs]
- home = [ "HTML", "JSON"]
- page = [ "HTML"]
-
+ home = [ "HTML", "JSON"]
+ page = [ "HTML"]
+
+[sitemap]
+ changefreq = "monthly"
+ filename = "sitemap.xml"
+ priority = 0.5
+
+[mediaTypes.'application/wasm']
+ suffixes = [ 'wasm' ]
+
+[mediaTypes.'application/octet-stream']
+ suffixes = [ 'db' ]