-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathhugo.toml
More file actions
47 lines (42 loc) · 949 Bytes
/
hugo.toml
File metadata and controls
47 lines (42 loc) · 949 Bytes
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
baseURL = 'https://pascal-lang.org/'
languageCode = 'en-us'
title = 'Object Pascal - Readable, Reliable Programming'
# Disable theme to use custom templates
# theme = 'ananke'
[markup]
[markup.goldmark]
[markup.goldmark.renderer]
unsafe = true
[markup.highlight]
style = 'catppuccin-frappe'
lineNos = true
tabWidth = 2
codeFences = true
[params]
description = 'Pascal programming language - readable, reliable, and educational'
author = 'Object Pascal Community'
[menu]
[[menu.main]]
name = 'Home'
url = '/'
weight = 10
[[menu.main]]
name = 'Learn'
url = '/learn/'
weight = 20
[[menu.main]]
name = 'Resources'
url = '/resources/'
weight = 30
[[menu.main]]
name = 'Community'
url = '/community/'
weight = 40
[[menu.main]]
name = 'About'
url = '/about/'
weight = 15
# Enable section pages
[taxonomies]
tag = "tags"
category = "categories"