forked from scivision/hugo-flex-example
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.toml
44 lines (37 loc) · 808 Bytes
/
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
baseURL = "https://username.github.io/"
title = "Hugo-Flex Demo Site"
author = "Jane Doe"
languageCode = "en-us"
pygmentsCodeFences = true
enableRobotsTXT = true
theme = "hugo-flex"
publishDir = "docs"
[permalinks]
posts = "/:filename/"
pages = "/:filename/"
[params]
width = "42rem"
description = "Jane Doe's webpages"
color = "black"
rss = "To subscribe to this RSS feed, copy the address in the address bar and paste it into your favorite feed reader."
AuthorName = "Jane Doe"
schema = true
opengraph = true
twittercards = true
[menu]
[[menu.nav]]
name = "About"
url = "about/"
weight = 1.0
[[menu.nav]]
name = "Blog"
url = "posts/"
weight = 2.0
[[menu.nav]]
name = "Tags"
url = "tags/"
weight = 3.0
[[menu.nav]]
name = "Categories"
url = "categories/"
weight = 4.0