-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathconfig.toml
More file actions
52 lines (42 loc) · 1.55 KB
/
config.toml
File metadata and controls
52 lines (42 loc) · 1.55 KB
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
# The URL the site will be built for
base_url = "https://rohow.de/"
# Whether to automatically compile all Sass files in the sass directory
compile_sass = true
# Whether to build a search index to be used later on by a JavaScript library
build_search_index = false
title = "RoHOW - Robotic Hamburg Open Workshop"
[markdown]
highlight_code = true
[extra]
# Latest year for redirect
latest_year = 2026
# List of all years (for year selector)
years = [2026, 2025, 2024, 2023, 2022, 2021, 2020, 2019, 2018, 2017, 2016]
# English menu items
menu_items_en = [
{ name = "Home", url = "/{year}/en/" },
{ name = "Teams", url = "/{year}/en/teams/" },
{ name = "Schedule", url = "/{year}/en/schedule/" },
{ name = "Venue", url = "/{year}/en/venue/" },
{ name = "Press", url = "/{year}/en/press/" },
{ name = "Contact", url = "/{year}/en/contact/" },
]
# German menu items
menu_items_de = [
{ name = "Startseite", url = "/{year}/de/" },
{ name = "Teams", url = "/{year}/de/teams/" },
{ name = "Ablauf", url = "/{year}/de/schedule/" },
{ name = "Veranstaltungsort", url = "/{year}/de/venue/" },
{ name = "Presse", url = "/{year}/de/press/" },
{ name = "Kontakt", url = "/{year}/de/contact/" },
]
# English footer links
footer_links_en = [
{ name = "Imprint", url = "/{year}/en/imprint/" },
{ name = "Privacy Policy", url = "/{year}/en/privacy-policy/" },
]
# German footer links
footer_links_de = [
{ name = "Impressum", url = "/{year}/de/imprint/" },
{ name = "Datenschutzerklärung", url = "/{year}/de/privacy-policy/" },
]