blob: 3dcbe1e85beb213d216ff596787131317afeb376 (
plain)
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
|
baseURL = "https://danix.xyz/"
languageCode = "it-IT"
title = "danix.xyz"
theme = "danix-xyz-hacker"
enableRobotsTXT = true
minify.disableXML = false
# Hugo Pipes
[minify]
minifyOutput = true
# Languages
[languages]
[languages.it]
languageName = "IT"
contentDir = "content/it"
weight = 1
[languages.it.params]
locale = "it_IT"
[languages.en]
languageName = "EN"
contentDir = "content/en"
weight = 2
[languages.en.params]
locale = "en_US"
# Main menu
[[menus.main]]
name = "articles"
url = "/articles/"
weight = 1
[[menus.main]]
name = "is"
url = "/is/"
weight = 2
[[menus.main]]
name = "here"
url = "/is/here/"
weight = 3
[[menus.main]]
name = "legal"
url = "/is/legal/"
weight = 4
# Theme parameters
[params]
siteName = "danix.xyz"
siteDescription = "Portfolio and blog"
author = "Danilo Macrì"
email = "danix@danix.xyz"
# Theme options
syntaxHighlight = true
lineNumbers = false
readingTime = true
shareButtons = true
relatedPosts = true
# Colors
primaryAccent = "#a855f7"
secondaryAccent = "#00ff88"
# Article types with color mapping
[params.articleTypes.life]
label = "Life"
color_dark = "#f59e0b"
color_light = "#d97706"
[params.articleTypes.photo]
label = "Photo"
color_dark = "#ec4899"
color_light = "#be185d"
[params.articleTypes.link]
label = "Link"
color_dark = "#38bdf8"
color_light = "#0284c7"
[params.articleTypes.quote]
label = "Quote"
color_dark = "#00ff88"
color_light = "#008f5a"
[params.articleTypes.tech]
label = "Tech"
color_dark = "#a855f7"
color_light = "#7c3aed"
|