summaryrefslogtreecommitdiff
path: root/config.toml
diff options
context:
space:
mode:
authorAndreas Baumann <mail@andreasbaumann.cc>2017-02-09 16:32:04 +0100
committerAndreas Baumann <mail@andreasbaumann.cc>2017-02-09 16:32:04 +0100
commit91a2b975cb6df3d45c9a3af0f690017e3725cc18 (patch)
treeba7e826518912860cfeb4263c23d07e2ea751b18 /config.toml
parent78240436b4863f3da96ee4c1650b206809ec7996 (diff)
downloadwww-andreasbaumann-cc-91a2b975cb6df3d45c9a3af0f690017e3725cc18.tar.gz
www-andreasbaumann-cc-91a2b975cb6df3d45c9a3af0f690017e3725cc18.tar.bz2
dynamic section-based menu
Diffstat (limited to 'config.toml')
-rw-r--r--config.toml45
1 files changed, 44 insertions, 1 deletions
diff --git a/config.toml b/config.toml
index eb27b44..d8d0f65 100644
--- a/config.toml
+++ b/config.toml
@@ -4,6 +4,7 @@ title = "Andreas Baumann's Personal Home Page"
theme = "new_theme"
disableRss = true
enableRobotsTXT = true
+SectionPagesMenu = "main"
[Params]
author = "Andreas Baumann"
@@ -12,10 +13,52 @@ enableRobotsTXT = true
subtitle = "Personal Home Page"
location = "Zurich"
copyright_years = "2009 - 2017"
+ opengraph = true
[Params.widgets]
search = true
recent_articles = true
categories = true
tags = true
-
+
+[[menu.main]]
+ name = "Home"
+ weight = 30
+ identifier = "home"
+ url = "/"
+
+[[menu.main]]
+ name = "Software"
+ weight = 40
+ identifier = "software"
+ url = "/software"
+
+[[menu.main]]
+ name = "Toolbox"
+ weight = 50
+ identifier = "toolbox"
+ url = "/toolbox"
+
+[[menu.main]]
+ name = "Git"
+ weight = 60
+ identifier = "git"
+ url = "/git"
+
+[[menu.main]]
+ name = "Slides"
+ weight = 70
+ identifier = "slide"
+ url = "/slide"
+
+[[menu.main]]
+ name = "Blog"
+ weight = 80
+ identifier = "blog"
+ url = "/blog"
+
+[[menu.main]]
+ name = "Contact"
+ weight = 90
+ identifier = "contact"
+ url = "/contact"