-
Notifications
You must be signed in to change notification settings - Fork 33
/
config.toml
69 lines (63 loc) · 2.55 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
baseURL = "https://example.com/"
# include content marked as draft
buildDrafts = false
# include content with publishdate in the future
buildFuture = false
# include content already expired
buildExpired = false
# enable this to make all relative URLs relative to content root. Note that this does not affect absolute URLs.
relativeURLs = true
disableRSS = true
enableRobotsTXT = true
editor = "nano"
languageCode = "en"
language = "en"
theme = "vncnt-hugo"
title = "John Doe · Landing Page"
_merge = "none"
[permalinks]
fixed = ":title/"
posts = "posts/:slug/"
[params]
author = "John Doe"
# email does still work but is deprecated.
# use [params.contact.email] instead.
#email = "[email protected]"
description = "Landing Page"
bio = "First Row. \nSecond Row."
avatar = "img/avatar.jpg"
favicon = "img/favicon.ico"
error404 = "There is no such page."
[params.contact]
# the default fontawesome style in simple key-value pairs is "fab", i.e. brand icons
github = "https://github.com/jdoe"
instagram = "https://instagram.com/jdoe"
twitter = "https://twitter.com/jdoe"
# You may use (inline) tables for more versatility
# This allows sorting and even more icons.
# Just make sure not to mix key-value pairs, inline tables and tables,
# although keeping keeping this order is ok.
# See https://toml.io/en/v1.0.0 for details
0 = { name = "ello", icon = "ello", style = "fab", link = "" } # empty links are possible
[params.contact.1] # key names are sorted lexicographically
name = "hiking club" # may be omitted. defaults to key name
icon = "hiking" # may be omitted. defaults to key name
style = "fas" # may be omitted. default = "fas"
link = "https://local-hiking.club"
[params.contact.email]
name = "email" # may be omitted. defaults to key name
icon = "envelope" # may be omitted. defaults to key name
style = "fas" # may be omitted. default = "fas"
link = "mailto:[email protected]"
[params.contact.mastodon]
style = "fab" # may be omitted. default = "fas"
link = "https://example.social/@jdoe"
# By default rel="me" is not set
# For some services, it makes sense to set it though.
# This is the case for Mastodon (and Github) if you link back from these services.
# See
# https://microformats.org/wiki/rel-me and
# https://docs.joinmastodon.org/user/profile/#verification
# for more information.
# This defaults to false to cover the case of not having control over the linked site.
rel-me = true