-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.toml
102 lines (82 loc) · 2.07 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
90
91
92
93
94
95
96
97
98
99
100
101
102
# For more theme config options, see https://github.com/lxndrblz/anatole#modifying-the-configtoml
baseURL = "https://www.jasonyao.com"
languageCode = "en-us"
title = "Home"
theme = "anatole"
# Enables access to SHA and other git information
enableGitInfo = true
# Theme-specific configs
summarylength = 10
enableEmoji = true
enableRobotsTXT = true
# Adds ability for people to leave comments on posts
disqusShortname = "jasonyao"
[markup]
[markup.highlight]
lineNos = true
noClasses = false
[params]
displayMode = "dark"
title = "Jason Yao"
author = "Jason Yao"
description = "Software engineer, Chaotic-Stupid DnD player, bad shower singer."
profilePicture = "global/profile-church.png"
image = "assets/home/default-hamilton.jpg"
favicon = "assets/favicons/"
# Enables direct embedding of HTML snippets in the markdown files
# [markup.goldmark.renderer]
# unsafe= true
##
# Theme overrides
##
mainSections = ["posts"]
################### DISABLED FOR NOW
# example ["js/custom.js"]
#customJs = []
# Use an empty list if having a custom root page instead of post listings
# Form Spree Contact Form
#contactFormAction = "https://formspree.io/f/your-form-hash-here"
#################### DISABLED FOR NOW
# Swaps the generated URL routes from just the
# title to include publish year/month
[permalinks]
posts = "posts/:year/:month/:day/:title/"
##
# SEO
##
googleSiteVerify = "bS_JqKuXEPzN-1VZ4w0kc-PhpPeTs-ng8VtsvpnwXCU"
##
# Enables up ability to create static JSON blobs that
# can be served as a read-only API.
#
# E.g. All posts will now generate an index.json containing
# the post metadata
##
[outputs]
page = ["html", "json"]
section = ["html", "rss", "json"]
home = ["html", "rss", "json"]
##
# Nav menu
##
[menu]
[[menu.main]]
name = "Home"
identifier = "home"
weight = 100
url = "/"
[[menu.main]]
name = "Posts"
weight = 200
identifier = "posts"
url = "/posts/"
[[menu.main]]
name = "About"
weight = 300
identifier = "about"
url = "/about/"
[[menu.main]]
name = "Resume"
weight = 400
identifier = "resume"
url = "/resume/"