2021-07-30 21:07:51 +02:00
|
|
|
# Remove this if your site folder is not inside the theme folder
|
2021-07-21 20:23:55 +02:00
|
|
|
themesDir = "../../"
|
|
|
|
|
2021-07-30 21:07:51 +02:00
|
|
|
# Set your theme here
|
2016-02-20 22:09:11 +01:00
|
|
|
theme = "hugo-tufte"
|
2021-07-30 21:07:51 +02:00
|
|
|
# The url of your website
|
|
|
|
baseurl = "https://slashformotion.github.io/hugo-tufte/"
|
|
|
|
# The title of your website (shown on all the pages)
|
2016-02-20 22:09:11 +01:00
|
|
|
title = "Hugo-tufte Theme Example Site"
|
2021-07-30 21:07:51 +02:00
|
|
|
# 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
|
2016-02-20 22:09:11 +01:00
|
|
|
|
|
|
|
[params]
|
2021-07-30 21:07:51 +02:00
|
|
|
# Subtitle of the website
|
2016-02-20 22:09:11 +01:00
|
|
|
subtitle = "Subtitle goes here."
|
2021-07-30 21:07:51 +02:00
|
|
|
# Your name or the name of you company
|
2016-02-20 22:09:11 +01:00
|
|
|
copyrightHolder = "Copyright Holder"
|
2021-07-30 21:07:51 +02:00
|
|
|
# Show the "Powered by Hugo-Tufte and Hugo."
|
2016-02-20 22:09:11 +01:00
|
|
|
showPoweredBy = true
|
2021-07-30 21:07:51 +02:00
|
|
|
# Site wide kill switch
|
2021-07-21 20:23:55 +02:00
|
|
|
hidedate = false
|
2021-08-03 22:18:19 +02:00
|
|
|
# Uncomment for dark code blocks
|
|
|
|
# codeBlocksDark = true
|
2016-02-20 22:09:11 +01:00
|
|
|
|
2021-08-06 21:46:35 +02:00
|
|
|
# Common social website links, please comment the unused ones.
|
|
|
|
## (if your favorite one is not in the list, please head to the footer menu below and add an entry)
|
|
|
|
### Please note that some of the value below are only provided as an exemple, perhaps the computed isn't valid
|
|
|
|
github = "slashformotion"
|
|
|
|
gitlab = "slashformotion"
|
|
|
|
twitter = "slashformotion"
|
|
|
|
patreon = ""
|
|
|
|
youtube = "user/ChromeDevelopers" # check the end of your youtube url https://www.youtube.com/<copy_this>
|
|
|
|
medium = "slashformotion"
|
|
|
|
reddit = "Slashformotion"
|
|
|
|
stackoverflow = "16609732/slashformotion"
|
|
|
|
instagram = "google"
|
|
|
|
mastodon = "instance.url/@username"
|
|
|
|
orcid = "0000-0003-0634-3275"
|
|
|
|
google_scholar = "jm5QaHkAAAAJ"
|
|
|
|
|
2021-07-30 21:07:51 +02:00
|
|
|
[taxonomies]
|
|
|
|
category = "categories"
|
|
|
|
series = "series"
|
|
|
|
tag = "tags"
|
2016-02-20 22:09:11 +01:00
|
|
|
# -----------------------------------------------------------------------
|
2016-02-21 18:51:51 +01:00
|
|
|
# Navigation menu
|
2016-02-20 22:09:11 +01:00
|
|
|
# -----------------------------------------------------------------------
|
|
|
|
[[menu.nav]]
|
|
|
|
name = "Home"
|
2021-08-06 21:46:35 +02:00
|
|
|
pre = "<i class='fas fa-home la-lg'></i>"
|
2016-02-20 22:09:11 +01:00
|
|
|
weight = -110
|
|
|
|
identifier = "home"
|
|
|
|
url = "/"
|
|
|
|
[[menu.nav]]
|
|
|
|
name = "Posts"
|
2021-08-06 21:46:35 +02:00
|
|
|
pre = "<i class='fas fa-book fa-lg'></i> "
|
2016-02-20 22:09:11 +01:00
|
|
|
weight = -100
|
|
|
|
identifier = "posts"
|
|
|
|
url = "/post"
|
|
|
|
[[menu.nav]]
|
|
|
|
name = "Categories"
|
2021-08-06 21:46:35 +02:00
|
|
|
pre = "<i class='fas fa-tags fa-lg'></i> "
|
2016-02-20 22:09:11 +01:00
|
|
|
weight = -90
|
|
|
|
identifier = "categories"
|
|
|
|
url = "/categories"
|
2021-07-25 10:04:41 +02:00
|
|
|
[[menu.nav]]
|
|
|
|
name = "About"
|
2021-08-06 21:46:35 +02:00
|
|
|
pre = "<i class='fas fa-info-circle fa-lg'></i> "
|
2021-07-25 10:04:41 +02:00
|
|
|
weight = -80
|
|
|
|
identifier = "about"
|
|
|
|
url = "/about"
|
2021-08-06 21:46:35 +02:00
|
|
|
[[menu.nav]]
|
|
|
|
name = "Source Code"
|
|
|
|
pre = "<i class='fas fa-github fa-lg'></i> "
|
|
|
|
weight = -70
|
|
|
|
identifier = "github"
|
|
|
|
url = "https://github.com/slashformotion/hugo-tufte"
|
2016-02-20 22:09:11 +01:00
|
|
|
|
|
|
|
# -----------------------------------------------------------------------
|
2021-08-06 21:46:35 +02:00
|
|
|
# FOOTER MENU
|
|
|
|
# If you need to add custom links to you footer: put them here. Be aware that this theme is using fontawesome.
|
|
|
|
# Please head to https://fontawesome.com/v4.7/icons/ to pick icons
|
2016-02-20 22:09:11 +01:00
|
|
|
# -----------------------------------------------------------------------
|
2021-08-06 21:46:35 +02:00
|
|
|
|
2016-02-20 22:09:11 +01:00
|
|
|
[[menu.footer]]
|
2021-08-06 21:46:35 +02:00
|
|
|
name = "Custom footer link"
|
|
|
|
pre = "<i class='fab fa-google fa-lg'></i> "
|
2016-02-20 22:09:11 +01:00
|
|
|
weight = -90
|
2021-08-06 21:46:35 +02:00
|
|
|
identifier = "custom_link"
|
|
|
|
url = "https://google.com"
|
2021-07-21 20:23:55 +02:00
|
|
|
|
|
|
|
|
2021-07-30 21:07:51 +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]
|
2021-07-30 21:07:51 +02:00
|
|
|
unsafe = true # make the shortcodes work
|
2021-08-03 22:18:19 +02:00
|
|
|
[markup.highlight]
|
|
|
|
noClasses = false
|
2021-07-30 21:07:51 +02:00
|
|
|
|
2021-08-03 22:18:19 +02:00
|
|
|
pygmentsUseClasses = true
|
2021-07-30 21:07:51 +02:00
|
|
|
canonifyurls = true
|