-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhugo.toml
More file actions
77 lines (64 loc) · 1.5 KB
/
hugo.toml
File metadata and controls
77 lines (64 loc) · 1.5 KB
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
baseURL = "https://YOUR-USERNAME.github.io/YOUR-REPO/"
languageCode = "en-us"
title = "Your Name"
theme = "PaperMod"
[params]
defaultTheme = "light"
env = "production"
description = "Your Site Description"
target = "My Portfolio"
# Minimalist Layout Settings
[params.assets]
disableHLJS = true
[params.label]
icon = "logoT.jpg"
iconHeight = 160
text = ""
# HomePage
[params.profileMode]
enabled = true
title = "Hi, I'm [Name]"
subtitle = "Welcome to my digital garden. This is a sub-title."
# ==========================
# Main Menu
# ==========================
[menu]
# Top-level: About
[[menu.main]]
identifier = "about"
name = "About"
url = "/about/"
weight = 10
# Top-level: Projects
[[menu.main]]
identifier = "projects"
name = "Projects"
url = "/projects/"
weight = 20
# Top-level: Blog (The Parent)
[[menu.main]]
identifier = "blog"
name = "Blog"
url = "/blog/"
weight = 30
# ---- Blog submenus ----
[[menu.main]]
parent = "blog"
name = "Start here"
url = "/blog/start-here/"
weight = 31
[[menu.main]]
parent = "blog"
name = "Cheatsheets"
url = "/blog/cheatsheets/"
weight = 34
[[menu.main]]
parent = "blog"
name = "How I do things"
url = "/blog/how-i-do-things/"
weight = 32
[[menu.main]]
parent = "blog"
name = "Deep Dives"
url = "/blog/deep-dives/"
weight = 33