-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.toml
93 lines (76 loc) · 2.24 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
# This is the configuration file for the example website of the Hugo theme
# Astatine (see https://github.com/hugcis/hugo-astatine-theme).
#
# The URL from which the site will be served
baseurl = "https://jchen-cs.github.io"
# Language used
languageCode = "en-us"
# Website title
title = "Jiawei Chen"
# Theme used
theme = "hugo-astatine-theme"
preserveTaxonomyNames = true
rssLimit = 10
paginate = 10
# Code highlighting
pygmentsCodefences = true
pygmentsStyle = "native"
# Taxonomies (only tags and categories are supported out of the box but you can
# add more)
[taxonomies]
category = "categories"
tag = "tags"
# Configure permalinks style
[permalinks]
post = "/:slug/"
page = "/:slug/"
# Configure main navbar links. They can have a weight to select the order.
# This links to content within the content/post/ folder
[[menu.main]]
name = "Posts"
url = "/post"
weight = -140
[[menu.main]]
name = "Research"
url = "/research"
weight = -150
[[menu.main]]
name = "Projects"
url = "/projects"
weight = -140
# Make the tags and categories pages accessible directly from the navbar.
[[menu.main]]
name = "Teaching"
url = "/teaching"
weight = -130
[[menu.main]]
name = "Service"
url = "/service"
weight = -120
# Site wide params and SEO
[params]
# Site description. Individual pages can have descriptions too but if
# missing it will fallback to that one.
description = """Jiawei Chen's homepage"""
# Author of the site
authorName = "Jiawei Chen"
# Main image for the author. This will be the default image for SEO.
[params.imgname]
name = "img/main.jpg"
# Add an alt description for the image
alt = "Profile picture"
# Indicate if you host Katex yourself. Defaults to using the CDN KaTex.
# hostedKaTex = false
# Optional: add a twitter handle and mastodon handle for SEO.
# [params.twitter]
# name = "@Jack_harkness"
# [params.mastodon]
# name = "@jkharkness"
# host = "mastodon.social"
# Enable link to feed in footer
blogrss = true
# Enable pingback and webmention via webmention.io
# webmention = "hugocisneros.com"
# Sitemap location (default is /sitemap.xml)
[sitemap]
filename = "sitemap.xml"