-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhugo.toml
74 lines (60 loc) · 1.9 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
baseURL = 'https://example.org/'
languageCode = 'en-us'
title = 'My New Hugo Site'
theme = ["github.com/theNewDynamic/gohugo-theme-ananke/v2"]
resourceDir = "../resources"
defaultContentLanguage = "en"
sectionPagesMenu = "main"
enableRobotsTXT = true
[services.googleAnalytics]
id = ''
[pagination]
pagerSize = 3 # this is set low for demonstrating with dummy content. Set to a higher number
[languages.en]
contentDir = "content/en"
languageCode = 'en-US'
weight = 1
title = "Ananke"
# languageDirection = 'rtl' for Right-To-Left languages
[languages.fr]
contentDir = "content/fr"
languageCode = 'fr-FR'
weight = 2
title = "Ananke Fr"
[sitemap]
changefreq = "monthly"
priority = 0.5
filename = "sitemap.xml"
[params]
text_color = ""
author = ""
favicon = ""
site_logo = ""
description = "The last theme you'll ever need. Maybe."
# choose a background color from any on this page: https://tachyons.io/docs/themes/skins/ and preface it with "bg-"
background_color_class = "bg-black"
# choose fitting and alignment styles for the featured image using Tachyons classes such as "cover|contain" for fitting and "bg-top|bg-center|bg-bottom" for alignment, or add any other class space-separated to customize further
featured_image_class = "cover bg-top"
# choose a color dimming class for the page or site header from any on this page: https://tachyons.io/docs/themes/skins/, preface it with "bg-" and add the value such as "-X0" where X is in [1,9]
cover_dimming_class = "bg-black-60"
recent_posts_number = 3
[params.ananke.social.share]
networks = [
"email",
"facebook",
"bluesky",
"linkedin"
]
[params.ananke.social.follow]
networks = [
"facebook",
"bluesky",
"linkedin"
]
[params.ananke.social.facebook]
username = "patrick.kollitsch"
# profilelink = "https://www.facebook.com/patrick.kollitsch"
[params.ananke.social.linkedin]
username = "patrickkollitsch"
[params.ananke.social.bluesky]
username = "kollitsch.dev"