| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105 |
- baseURL = "https://blog.technically.fun"
- title = "Blog | Technically.fun"
- languageCode = "en"
- DefaultContentLanguage = "en" # Change this to change the site's language
- theme = "hugo.386"
- preserveTaxonomyNames = true
- [params]
- # The name to display as main title in the home page
- mainpagetitle = "Blog | Technically.fun"
- # The subtitle to display under the title in the home page
- mainpagesubtitle = "A simple blog for simple programming fun!"
- # The description of your website. It will be displayed in the home page
- mainpagedesc = "This is my little spot on the interweb where I like to post about the random projects I have going on. Feel free to come check it out!"
- # The name to display in the copyright section in the footer
- copyrightname = "Steffen Blake"
- # The url to use as link in the copyright name in the footer. Leave empty to use none.
- copyrighturl = "https://technically.fun"
- # Show the "built on Hugo" disclaimer
- showhugo = true
- # Show a CRT screen effect. Default is enabled.
- showcrt = true
- # Urls for social networks
- #facebook = "https://facebook.com"
- #twitter = "https://twitter.com"
- linkedin = "https://www.linkedin.com/in/steffen-blake-117b86132/"
- github = "https://github.com/SteffenBlake"
- gogs = "https://repo.technically.fun"
- # Enables or disables the loading animations. false activates them. Default is false.
- loadfastload = false
- # Sets the speed for the page loading effect. Default is 1.0.
- loadspeedfactor = 1.0
- # Enables or disables the second flyby cursor. Default is false.
- loadonepass = true
- customCSS = ["css/custom.css"]
- customJS = ["js/custom.js"]
- [params.copyright]
- name = "Steffen Blake"
- # The url to use as link in the copyright name in the footer. Leave empty to use none.
- url = "https://technically.fun"
- # Text to go before copyright information
- prefix = "[hugo.386 theme by Max le Fou](https://gitlab.com/maxlefou/hugo.386)"
- # Text to go between copyright and hugo disclaimer (if enabled)
- suffix = "Example site"
- [menu]
- # This displays buttons in the navbar to access your contents
- [[menu.main]]
- identifier = "about" # An unique identifier for the button
- name = "About" # A display name for the button
- url = "/about/" # The path to the content. It can lead to a single page (like here)
- weight = 10 # A number to order the buttons in the navbar
- [[menu.main]]
- identifier = "posts"
- name = "All posts"
- url = "/post/" # The path can lead to a content folder too.
- weight = 20
- [taxonomies]
- category = "categories"
- tag = "tags"
- [privacy]
- [privacy.vimeo]
- disabled = false
- simple = true
- [privacy.twitter]
- disabled = false
- enableDNT = true
- simple = true
- [privacy.instagram]
- disabled = false
- simple = true
- [privacy.youtube]
- disabled = false
- privacyEnhanced = true
- [services]
- [services.instagram]
- disableInlineCSS = true
- [services.twitter]
- disableInlineCSS = true
|