-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.toml
77 lines (65 loc) · 2.58 KB
/
config.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
# This is a simple configuration.
# If you want to see the full configuration, please check `full-config.toml` .
# And see https://gohugo.io/getting-started/configuration/ .
title = "Blog | Lennart van Koot"
enableRobotsTXT = true
enableEmoji = true
theme = "jane"
hasCJKLanguage = true # has chinese/japanese/korean
paginate = 3 # Number of articles displayed on the homepage
rssLimit = 20 # Limit Entry Count to Rss file
disqusShortname = "" # disqus_shortname
googleAnalytics = "" # UA-XXXXXXXX-X
copyright = "" # default: author.name
# language support # en / zh-cn / other... translations present in i18n/
defaultContentLanguage = "en" # Default language to use
[languages.en]
languageCode = "en"
[author] # essential
name = "Lennart van Koot"
[sitemap] # essential
changefreq = "weekly"
priority = 0.5
filename = "sitemap.xml"
[[menu.main]] # config your menu
name = "Home"
weight = 10
identifier = "home"
url = "/"
[[menu.main]]
name = "Archives"
weight = 20
identifier = "archives"
url = "/post/"
[[menu.main]]
name = "Tags"
weight = 30
identifier = "tags"
url = "/tags/"
[[menu.main]]
name = "Categories"
weight = 40
identifier = "categories"
url = "/categories/"
[params]
since = "2022" # Site creation time
homeFullContent = false # if false, show post summaries on home page. Otherwise show full content.
rssFullContent = true # if false, Rss feed instead of the summary
# site info (optional)
logoTitle = "Jane" # default: the title value
keywords = ["Hugo", "theme","jane"]
description = "Hugo theme jane example site."
# The date format to use; for a list of valid formats, see https://gohugo.io/functions/format/
dateFormatToUse = "2006-01-02"
# Some global options, you can also close or open something in front matter for a single post, see more information from `archetypes/default.md`.
toc = true
photoswipe = true # see https://github.com/dimsemenov/PhotoSwipe
contentCopyright = '<a rel="license noopener" href="https://creativecommons.org/licenses/by-nc-nd/4.0/" target="_blank">CC BY-NC-ND 4.0</a>'
# Link custom CSS and JS assets
# (relative to /static/css and /static/js respectively)
customCSS = [] # if ['custom.css'], load '/static/css/custom.css' file
customJS = [] # if ['custom.js'], load '/static/js/custom.js' file
[params.social]
a-email = "mailto:[email protected]"
e-linkedin = "https://blog.vankoot.net"
g-github = "https://blog.vankoot.net"