-
Notifications
You must be signed in to change notification settings - Fork 1
/
config.toml
89 lines (79 loc) · 1.86 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
78
79
80
81
82
83
84
85
86
87
88
89
baseURL = "https://andywhite.xyz/"
title = "Andy White"
languageCode = "en-us"
theme = "hugo-coder"
# Site generation
enableRobotsTXT = true
paginate = 20
canonifyurls = true
# Google Analytics
#googleAnalytics = "UA-151733054-1"
googleAnalytics = "G-MM3WH52FQF"
# Disqus
disqusShortname = "andywhite-xyz"
# Code blocks
pygmentsCodeFences = true
pygmentsCodeFencesGuessSyntax = true
# Emoji
enableEmoji = true
# Sitemap settings (not sure if this is hugo core or theme-driven?)
[sitemap]
changefreq = "monthly"
priority = 0.5
filename = "sitemap.xml"
# hugo-coder theme settings
[params]
author = "Andy White"
info = "Hello, my name is Andy. Welcome to my personal website!"
description = "Andy White's personal website"
keywords = "blog,tech,developer,software,personal"
avatarurl = "images/andy.jpeg"
#favicon_32 = "/img/favicon-32x32.png"
#favicon_16 = "/img/favicon-16x16.png"
footercontent = ""
hidecredits = true
hidecopyright = true
rtl = false
math = true
colorScheme = "auto"
inverted = false
customCSS = []
customJS = [
#"https://cdnjs.cloudflare.com/ajax/libs/anchor-js/4.2.0/anchor.min.js",
#"/js/main.js"
]
# This is a hack to use the layouts/partials/csp.html template to inject custom scripts and stuff
[params.csp]
x = "x"
[[params.social]]
name = "GitHub"
icon = "fa fa-github fa-2x"
weight = 1
url = "https://github.com/andywhite37"
[[params.social]]
name = "Twitter"
icon = "fa fa-twitter fa-2x"
weight = 2
url = "https://twitter.com/whitehouse3001"
[[params.social]]
name = "Facebook"
icon = "fa fa-facebook fa-2x"
weight = 2
url = "https://facebook.com/andywhite2"
[[params.social]]
name = "LinkedIn"
icon = "fa fa-linkedin fa-2x"
weight = 3
url = "https://linkedin.com/in/andywhitesoftwaredeveloper"
[[menu.main]]
name = "Blog"
weight = 1
url = "/posts/"
[[menu.main]]
name = "Projects"
weight = 2
url = "/projects/"
[[menu.main]]
name = "About"
weight = 3
url = "/about/"