website-theme/exampleSite/config.toml

50 lines
1.2 KiB
TOML
Raw Normal View History

2018-09-23 07:11:35 -04:00
baseurl = "https://example.com/"
title = "Site Title"
theme = "pulp"
canonifyurls = true
hasCJKLanguage = true
pygmentsCodefences = false
pygmentsUseClasses = false
# googleAnalytics = "{your tracking code}"
2018-09-23 07:11:35 -04:00
[params]
author = "Your Name"
2018-09-23 07:11:35 -04:00
avatar = "avatar.jpg"
2018-09-24 03:48:35 -04:00
favicon = "favicon.ico"
2018-09-23 07:11:35 -04:00
discription = """
Please write anything here.
Profiles, backgrounds, favorite things etc.
2018-09-23 07:11:35 -04:00
"""
publicationYear = "2018"
2018-09-24 11:27:18 -04:00
listPageDateFormat = "January, 2006" # See https://gohugo.io/functions/format/
singlePageDateFormat = "January 2, 2006"
# custom_css = ["/css/custom.css"]
# custom_js = ["/js/custom.js"]
2018-09-23 07:11:35 -04:00
2018-10-08 06:37:58 -04:00
[outputs]
section = ["JSON", "HTML"]
[[menu.main]]
2018-09-23 07:11:35 -04:00
name = "Blog"
2019-03-23 05:12:24 -04:00
pre = "<i class='fa fa-book-open fa-lg'></i>"
2018-09-23 10:02:15 -04:00
url = "/blog/"
2019-03-23 05:12:24 -04:00
weight = 10
2018-09-23 07:11:35 -04:00
[[menu.main]]
2018-09-23 07:11:35 -04:00
name = "Twitter"
2019-03-23 05:12:24 -04:00
pre = "<i class='fab fa-twitter fa-lg'></i>"
2018-09-23 07:11:35 -04:00
url = "https://twitter.com/username"
2019-03-23 05:12:24 -04:00
weight = 20
2018-09-23 07:11:35 -04:00
[[menu.main]]
2018-09-23 07:11:35 -04:00
name = "GitHub"
2019-03-23 05:12:24 -04:00
pre = "<i class='fab fa-github fa-lg'></i>"
2018-09-23 07:11:35 -04:00
url = "https://github.com/username"
2019-03-23 05:12:24 -04:00
weight = 30
2018-09-23 07:11:35 -04:00
[[menu.main]]
2018-09-23 07:11:35 -04:00
name = "Email"
2019-03-23 05:12:24 -04:00
pre = "<i class='fa fa-envelope fa-lg'></i>"
2018-09-23 07:11:35 -04:00
url = "mailto:username@example.com"
2019-03-23 05:12:24 -04:00
weight = 40