-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhugo.toml
93 lines (74 loc) · 1.73 KB
/
hugo.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
baseURL = "https://www.aviskase.com"
languageCode = "en"
title = "aviskase"
buildFuture = true
# canonifyURLs = true
disableKinds = ["section", "taxonomy"]
enableEmoji = true
publishDir = "output"
summaryLength = 50
capitalizeListTitles = false
[taxonomies]
category = 'categories'
[params]
description = "A blog by Yuliya Bagriy aka aviskase about cyber, APIs, and kaleidoscope of other thingies."
images = ["logo.png"]
title = "aviskase"
username = "aviskase"
firstname = "Yuliya"
lastname = "Bagriy"
mainSections = ["posts"]
# [frontmatter]
# date = ["Date", ":default"]
# lastmod = ["Modified", ":default"]
[params.social]
email = "[email protected]"
twitter_creator = "@aviskase"
[outputs]
# Output HTML, and ATOM on Home
home = ["HTML", "ATOM"]
# Output only HTML everywhere else
# section = ["HTML"]
# section = ["HTML"]
# taxonomy = ["HTML"]
term = ["HTML", "ATOM"]
# Define a new ATOM output format
[outputFormats]
[outputFormats.ATOM]
name = "ATOM"
path = "feeds"
baseName = "all"
mediaType = "application/atom+xml"
# Define a new ATOM media type
[mediaTypes]
[mediaTypes."application/atom+xml"]
suffixes = ["atom.xml"]
[markup]
[markup.goldmark]
[markup.goldmark.extensions]
definitionList = true
footnote = true
linkify = true
strikethrough = true
table = true
taskList = true
typographer = true
[markup.highlight]
style = "catppuccin-mocha"
guessSyntax = true
[markup.goldmark.renderer]
unsafe = true
[permalinks]
articles = "/articles/:year/:month/:day/:slug/"
[menu]
[[menu.main]]
# if you need special typography chars in name, you them as is, because layout page cannot markdownify them
identifier = "home"
name = "Home"
url = "/"
weight = 100
[[menu.main]]
identifier = "rss"
name = "RSS"
url = "/feeds/all.atom.xml"
weight = 300