From 983b64ca51f5e769f790a5ebc55e3808157b8d94 Mon Sep 17 00:00:00 2001 From: Andreas Baumann Date: Fri, 5 Jun 2020 16:57:53 +0200 Subject: updated to newest theme supporting newer hugo versions --- config.toml | 100 ++++++++++++++++++++++++++++++++++++------------------------ 1 file changed, 60 insertions(+), 40 deletions(-) (limited to 'config.toml') diff --git a/config.toml b/config.toml index d53a229..57152a0 100644 --- a/config.toml +++ b/config.toml @@ -1,10 +1,11 @@ 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" @@ -14,70 +15,89 @@ SectionPagesMenu = "main" location = "Zurich" copyright_years = "2009 - 2019" 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", "elasticlunr_search", "recent", "categories"] [taxonomies] -category = "categories" + category = "categories" [[menu.main]] - name = "Home" - weight = 30 - identifier = "home" - url = "/" + name = "Home" + weight = 30 + identifier = "home" + url = "/" [[menu.main]] - name = "Software" - weight = 40 - identifier = "software" - url = "/software" + name = "Software" + weight = 40 + identifier = "software" + url = "/software" [[menu.main]] - name = "Toolbox" - weight = 50 - identifier = "toolbox" - url = "/toolbox" + name = "Toolbox" + weight = 50 + identifier = "toolbox" + url = "/toolbox" [[menu.main]] - name = "Git" - weight = 60 - identifier = "git" - url = "/git" + name = "Git" + weight = 60 + identifier = "git" + url = "/git" [[menu.main]] - name = "Slides" - weight = 70 - identifier = "slide" - url = "/slide" + name = "Slides" + weight = 70 + identifier = "slide" + url = "/slide" [[menu.main]] - name = "Blog" - weight = 80 - identifier = "blog" - url = "/blog" + name = "Blog" + weight = 80 + identifier = "blog" + url = "/blog" [[menu.main]] - name = "Search" - weight = 90 - identifier = "search" - url = "/search" + name = "Search" + weight = 90 + identifier = "search" + url = "/search" [[menu.main]] - name = "Contact" - weight = 100 - identifier = "contact" - url = "/contact" + name = "Contact" + weight = 100 + identifier = "contact" + url = "/contact" [outputs] - home = [ "HTML", "JSON"] - page = [ "HTML"] + home = [ "HTML", "JSON"] + page = [ "HTML"] [sitemap] - changefreq = "monthly" - filename = "sitemap.xml" - priority = 0.5 + changefreq = "monthly" + filename = "sitemap.xml" + priority = 0.5 -- cgit v1.2.3-54-g00ecf