-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhugo.toml
91 lines (68 loc) · 2.35 KB
/
hugo.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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
baseURL = "http://chelseanbr.github.io/"
defaultContentLanguage = "en"
languageCode = "en"
title = "chelseanbr"
theme = "gokarna"
# Automatically generate robots.txt
enableRobotsTXT = true
[menu]
[[menu.main]]
# Unique identifier for a menu item
identifier = "posts"
url = "/posts/"
# You can add extra information before the name (HTML format is supported), such as icons
pre = ""
# You can add extra information after the name (HTML format is supported), such as icons
post = ""
# Display name
name = "Posts"
# Weights are used to determine the ordering
weight = 1
[[menu.main]]
identifier = "tags"
name = "Tags"
url = "/tags/"
weight = 2
[[menu.main]]
identifier = "github"
url = "https://github.com/chelseanbr"
weight = 3
# We use feather-icons: https://feathericons.com/
pre = "<span data-feather='github'></span>"
[params]
# URL for the avatar on homepage
avatarURL = "/images/avatar.jpeg"
# Choose one of size-xs, size-s, size-m, size-l & size-xl. (Default: size-m)
avatarSize = ""
# Description to display on homepage
description = ""
# Accent color is displayed when you hover over <a> tags
accentColor = "#F08080"
# You can use this to inject any HTML in the <head> tag.
# Ideal usecase for this is to import custom js/css or add your analytics snippet
customHeadHTML = ""
# Keywords relevant for SEO
metaKeywords = ["blog", "gokarna", "hugo"]
# If you want to display posts on the homepage, the options are
# "popular" (order posts by weight), "recent" (order posts by date)
# or "" (do not display, default option)
showPostsOnHomePage = "recent"
# Footer text
footer = "Chelsea Ramos"
socialIcons = [
{name = "linkedin", url = "https://linkedin.com/in/chelseanbr"},
{name = "github", url = "https://github.com/chelseanbr"},
{name = "youtube", url = "https://youtube.com/chelseanbr"},
{name = "instagram", url = "https://instagram.com/chelseawhatisee"},
{name = "medium", url = "https://medium.com/@chelseanbr"},
]
customFooterHTML = '''
<div id="commento"></div>
<script defer src="{{ .Site.Params.CommentoURL }}/js/commento.js"></script>
<noscript>Please enable JavaScript to load the comments.</noscript>
'''
[markup]
[markup.tableOfContents]
startLevel = 1
endLevel = 3
ordered = false