forked from ponylang/ponylang-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.toml
97 lines (76 loc) · 1.6 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
baseurl = "https://www.ponylang.org"
languageCode = "en-us"
title = "Pony"
metadataformat = "TOML"
canonifyurls = false
# Enable Google Analytics by entering your tracking id
[params]
# General information
description = "Pony - High Performance Actor Programming"
copyright = "Pony Developers"
# Repository
provider = "GitHub"
repo_url = "https://github.com/ponylang/ponyc"
logo = "/images/logo.png"
favicon = ""
permalink = "#"
# Custom assets
custom_css = ["stylesheets/pony-material.css"]
custom_js = []
# Syntax highlighting theme
highlight_css = ""
[params.palette]
primary = "brown"
accent = "deep-orange"
[params.font]
text = "Roboto"
code = "Roboto Mono"
[social]
twitter = "ponylang"
github = "ponylang"
[[menu.main]]
name = "Pony"
url = "/"
weight = 1
[[menu.main]]
name = "New to Pony?"
url = "/discover/"
weight = 10
[[menu.main]]
name = "Learning Pony?"
url = "/learn/"
weight = 20
[[menu.main]]
name = "Existing User?"
url = "/reference/"
weight = 30
[[menu.main]]
name = "Looking to contribute?"
url = "/contribute/"
weight = 40
[[menu.main]]
name = "Community"
url = "/community/"
weight = 50
[[menu.main]]
name = "Blog"
url = "/blog/"
weight = 60
[[menu.main]]
name = "FAQ"
url = "/faq/"
weight = 70
[[menu.main]]
name = "Code of Conduct"
url = "/community/code-of-conduct/"
weight = 80
[blackfriday]
smartypants = true
fractions = true
smartDashes = true
plainIDAnchors = true
[permalinks]
blog = "/blog/:year/:month/:slug/"
[taxonomies]
category = "categories"
tag = "tags"