website-theme/exampleSite/config.toml

60 lines
1.6 KiB
TOML
Raw Normal View History

2018-09-23 11:11:35 +00:00
baseurl = "https://example.com/"
title = "Site Title"
theme = "pulp"
canonifyurls = true
hasCJKLanguage = true
2019-03-28 17:53:05 +00:00
# pygmentsCodefences = true
# pygmentsUseClasses = true
# googleAnalytics = "{your tracking code}"
2018-09-23 11:11:35 +00:00
2020-03-23 07:46:23 +00:00
[markup.goldmark.renderer]
unsafe = true # Allow user HTML tags
2018-09-23 11:11:35 +00:00
[params]
author = "Your Name"
2018-09-23 11:11:35 +00:00
avatar = "avatar.jpg"
2020-03-26 15:57:14 +00:00
# avatarDescription = "My avatar description"
2018-09-24 07:48:35 +00:00
favicon = "favicon.ico"
description = """
Please write anything here.
Profiles, backgrounds, favorite things etc.
2018-09-23 11:11:35 +00:00
"""
2019-03-28 17:53:05 +00:00
publicationYear = "2019"
# 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 11:11:35 +00:00
2020-01-19 01:08:50 +00:00
# Make sure setting a following option for search bar to work
2018-10-08 10:37:58 +00:00
[outputs]
section = ["JSON", "HTML"]
term = ["JSON", "HTML"]
2018-10-08 10:37:58 +00:00
[[menu.main]]
2019-05-05 15:33:05 +00:00
identifier = "blog"
# name = "Blog" #If display text link, cancel comment out
2019-03-28 17:53:05 +00:00
pre = "<i class='fa fa-book-open fa-lg'></i>" #Choose your favorite font from Font Awesome
2018-09-23 14:02:15 +00:00
url = "/blog/"
2019-03-23 09:12:24 +00:00
weight = 10
2018-09-23 11:11:35 +00:00
[[menu.main]]
2019-05-05 15:33:05 +00:00
identifier = "twitter"
# name = "Twitter"
2019-03-23 09:12:24 +00:00
pre = "<i class='fab fa-twitter fa-lg'></i>"
2018-09-23 11:11:35 +00:00
url = "https://twitter.com/username"
2019-03-23 09:12:24 +00:00
weight = 20
2018-09-23 11:11:35 +00:00
[[menu.main]]
2019-05-05 15:33:05 +00:00
identifier = "github"
# name = "GitHub"
2019-03-23 09:12:24 +00:00
pre = "<i class='fab fa-github fa-lg'></i>"
2018-09-23 11:11:35 +00:00
url = "https://github.com/username"
2019-03-23 09:12:24 +00:00
weight = 30
2018-09-23 11:11:35 +00:00
[[menu.main]]
2019-05-05 15:33:05 +00:00
identifier = "email"
# name = "Email"
2019-03-23 09:12:24 +00:00
pre = "<i class='fa fa-envelope fa-lg'></i>"
2018-09-23 11:11:35 +00:00
url = "mailto:username@example.com"
2019-03-23 09:12:24 +00:00
weight = 40