added article about bash-notes. Still in draft
[danix.xyz.git] / hugo.toml
1 baseURL = "https://danix.xyz"
2 languageCode = "en-us"
3 title = "danix's ramblings"
4 theme = "dagreynix"
5 enableRobotsTXT = true
6 MetaDataFormat = "yaml"
7 refLinksErrorLevel = "WARNING"
8 paginate = 10
9
10 [author]
11 name = "Danilo 'danix' M."
12
13 [social]
14 spotify = "1166786773"
15 twitter = "danixland"
16 instagram = "danixland"
17 github = "danixland"
18
19 [params]
20 author_name = "danilo 'danix' m."
21 author_url = "https://danix.xyz"
22 author_nickname = "danix"
23 description = "here's where I think out loud"
24 dateFormat = "2 January 2006"
25 mainSections = ["articles", "article"]
26 faviconSizes = [16, 32, 48]
27 imageSizes = [360, 480, 736, 980, 1280, 1680]
28
29 [permalinks]
30 articles = '/articles/:year/:month/:title/'
31
32 [menu]
33 [[menu.main]]
34 identifier = "git-danix"
35 name = "my projects"
36 title = "git repository at danix.xyz"
37 url = "https://git.danix.xyz"
38
39 [markup]
40 [markup.goldmark]
41 [markup.goldmark.renderer]
42 hardWraps = false
43 unsafe = true
44 xhtml = false
45 [markup.highlight]
46 noClasses = false
47
48 [privacy]
49 [privacy.disqus]
50 disable = true
51 [privacy.googleAnalytics]
52 disable = true
53 [privacy.instagram]
54 simple = true
55 [privacy.twitter]
56 enableDNT = true
57 simple = true
58 [privacy.vimeo]
59 enableDNT = true
60 simple = true
61 [privacy.youtube]
62 privacyEnhanced = true
63
64 [outputs]
65 home = ["HTML", "SearchIndex"]
66
67 [outputFormats]
68 [outputFormats.SearchIndex]
69 mediaType = "application/json"
70 baseName = "searchindex"
71 isPlainText = true
72 notAlternative = true
73