hugo-tufte/exampleSite/config.toml

82 lines
2.2 KiB
TOML
Raw Normal View History

# Remove this if your site folder is not inside the theme folder
2021-07-21 20:23:55 +02:00
themesDir = "../../"
# Set your theme here
theme = "hugo-tufte"
# The url of your website
baseurl = "https://slashformotion.github.io/hugo-tufte/"
# The title of your website (shown on all the pages)
title = "Hugo-tufte Theme Example Site"
# Site wide kill switch for Latex support
math = true
# (If math is enabled)
## if "katex" is set to true katex will be used to render LaTex, if not MathJax will be used instead
katex = false
[params]
# Subtitle of the website
subtitle = "Subtitle goes here."
# Your name or the name of you company
copyrightHolder = "Copyright Holder"
# Show the "Powered by Hugo-Tufte and Hugo."
showPoweredBy = true
# Site wide kill switch
2021-07-21 20:23:55 +02:00
hidedate = false
[taxonomies]
category = "categories"
series = "series"
tag = "tags"
# -----------------------------------------------------------------------
# Navigation menu
# -----------------------------------------------------------------------
[[menu.nav]]
name = "Home"
pre = "<i class='fa fa-home fa-lg'></i> "
weight = -110
identifier = "home"
url = "/"
[[menu.nav]]
name = "Posts"
pre = "<i class='fa fa-book fa-lg'></i> "
weight = -100
identifier = "posts"
url = "/post"
[[menu.nav]]
name = "Categories"
pre = "<i class='fa fa-tags fa-lg'></i> "
weight = -90
identifier = "categories"
url = "/categories"
2021-07-25 10:04:41 +02:00
[[menu.nav]]
name = "About"
pre = "<i class='fa fa-info-circle fa-lg'></i> "
weight = -80
identifier = "about"
url = "/about"
# -----------------------------------------------------------------------
# Footer menu
# -----------------------------------------------------------------------
[[menu.footer]]
name = ""
pre = "<i class='fa fa-github fa-2x'></i> "
weight = -100
identifier = "github"
2021-07-29 09:29:27 +02:00
url = "https://github.com/slashformotion/hugo-tufte"
[[menu.footer]]
name = ""
pre = "<i class='fa fa-twitter fa-2x'></i> "
weight = -90
identifier = "twitter"
url = "https://twitter.com"
2021-07-21 20:23:55 +02:00
# Don't change the settings below
2021-07-21 20:23:55 +02:00
[markup]
[markup.goldmark]
2021-07-25 10:04:41 +02:00
[markup.goldmark.renderer]
unsafe = true # make the shortcodes work
pygmentsUseClasses=true
canonifyurls = true