-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.toml
111 lines (88 loc) · 2.96 KB
/
config.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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
# The URL the site will be built for
base_url = "https://photos.network"
title = "Photos.network"
description = "The main website for Photos.network a self-hosted and open source photo management service."
default_language = "en"
output_dir = "docs"
# Whether to automatically compile all Sass files in the sass directory
compile_sass = true
ignored_content = []
generate_feed = true
# The filename to use for the feed. Used as the template filename, too.
# Defaults to "atom.xml", which has a built-in template that renders an Atom 1.0 feed.
# There is also a built-in template "rss.xml" that renders an RSS 2.0 feed.
feed_filename = "atom.xml"
# Whether to build a search index to be used later on by a JavaScript library
build_search_index = true
[markdown]
# Whether to do syntax highlighting
highlight_code = true
[search]
# Whether to include the title of the page/section in the index
include_title = true
# Whether to include the description of the page/section in the index
include_description = true
# Whether to include the path of the page/section in the index
include_path = true
# Whether to include the rendered content of the page/section in the index
include_content = true
# At which character to truncate the content to. Useful if you have a lot of pages and the index would
# become too big to load on the site. Defaults to not being set.
truncate_content_length = 100
[languages.de]
build_search_index = true
title = "Photos.network"
[extra]
enable_search = false
enable_sidebar = true
enable_adsense = false
enable_multilingue = false
enable_darkmode = false
[extra.lang]
items = [
{ lang = "en", links = [
{ base_url = "/", name = "English" },
{ base_url = "/de", name = "German" },
] },
{ lang = "de", links = [
{ base_url = "/", name = "Englisch" },
{ base_url = "/de", name = "Deutsch" },
] },
]
[extra.navbar]
items = [
{ lang = "en", links = [
{ url = "/", name = "Home" },
#{ url = "/installation", name = "Installation" },
#{ url = "/documentation", name = "Documentation" },
] },
{ lang = "de", links = [
{ url = "/de", name = "Start" },
#{ url = "/de/installation", name = "Installation" },
#{ url = "/de/documentation", name = "Dokumentation" },
]}
]
[extra.sidebar]
items = []
# Index page
[extra.index]
title = "Photos.network"
image = "logo.png"
image_alt = "Logo of the Photos.network project."
[extra.default_author]
name = "Stürmer, Benjamin"
[extra.social]
github = "https://github.com/photos-network"
twitter = "https://twitter.com/photosnetwork"
email = "info@photos.network"
linkedin = ""
stackoverflow = ""
telegram = ""
[extra.favicon]
favicon = "/icons/favicon.ico"
favicon_16x16 = "/icons/favicon-16x16.png"
favicon_32x32 = "/icons/favicon-32x32.png"
apple_touch_icon = "/icons/apple-touch-icon.png"
android_chrome_512 = "/icons/android-icon-310x310.png"
android_chrome_192 = "/icons/android-icon-192x192.png"
manifest = "/icons/site.webmanifest"