-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy paththeme.toml
111 lines (99 loc) · 4.23 KB
/
theme.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
name = "Blue Theme"
description = "A classic blog theme"
license = "MIT"
homepage = "https://github.com/bluerobotics/bluetheme"
# The minimum version of Zola required
min_version = "0.19.2"
# An optional live demo URL
demo = ""
# The default language; used in feeds and search index
default_language = "en"
# Whether to build a search index to be used later on by a JavaScript library
build_search_index = true
[search]
include_title = true
include_description = false
include_content = true
# Any variable there can be overridden in the end user `config.toml`
# You don't need to prefix variables by the theme name but as this will
# be merged with user data, some kind of prefix or nesting is preferable
# Use snake_casing to be consistent with the rest of Zola
[extra]
# ---------------------- NAVBAR ---------------------- #
[extra.logo]
# The path to the navbar logo image - defaults to a logo.png file in the "static" folder
#image_source = "https://blueos.cloud/assets/img/blueos-logo-white.png"
# The place where the logo in the navbar should link to - defaults to config.base_url
#redirect_to = "/docs/"
# If you enable this option, a select widget will be available to switch between different versions.
# You need to provide a url for a json file, an example can be found in the bluetheme docs.
#version_choices = "/docs/data.json"
# megamenu links
[[extra.navbar]]
name = "About"
columns = [
{heading = "General", links = [
{name = "About Blue Robotics", href="https://bluerobotics.com/about/"},
# {name = "Open Source License", href="#"},
# {name = "Sponsorship", href="#"},
]},
{heading = "Applications", links = [
{name = "BlueOS", href="https://blueos.cloud/docs/latest"},
{name = "Cockpit", href="https://blueos.cloud/cockpit/docs/latest/"},
{name = "Ping Viewer", href="https://docs.bluerobotics.com/ping-viewer"},
]},
]
[[extra.navbar]]
name = "Docs"
columns = [
{heading = "Autopilots", links = [
{name = "ArduCopter", href="https://ardupilot.org/copter/"},
{name = "ArduPlane", href="https://ardupilot.org/plane/"},
{name = "ArduRover", href="https://ardupilot.org/rover/"},
{name = "ArduSub", href="https://www.ardusub.com/"},
{name = "PX4", href="https://docs.px4.io/main/en/"},
]},
{heading = "Extensions", links = [
{name = "Cockpit", href="https://blueos.cloud/cockpit/docs"},
{name = "Ping Viewer", href="https://docs.bluerobotics.com/ping-viewer/"},
{name = "Node-Red", href="https://github.com/BlueOS-community/blueos-node-red"},
]},
{heading = "Developers", links = [
{name = "BlueOS Core Development", href="https://blueos.cloud/docs/latest/development/core/"},
{name = "BlueOS Extension Development", href="https://blueos.cloud/docs/latest/development/extensions/"},
{name = "Navigator Lib", href="https://github.com/bluerobotics/navigator-lib?tab=readme-ov-file"},
# {name = "Sensors", href="#"},
{name = "MAVLink Messages", href="https://mavlink.io/en/messages/common.html"},
# {name = "Lua Scripting Guide", href="#"},
]},
{heading = "Vehicles", links = [
{name = "BlueROV2", href="https://bluerobotics.com/guide-tag/bluerov2/"},
{name = "BlueBoat", href="https://bluerobotics.com/guide-tag/blueboat/"},
]},
]
[[extra.navbar]]
name = "Community"
columns = [
{heading = "Blue Robotics", links = [
{name = "Discussion Forum", href="https://discuss.bluerobotics.com/"},
{name = "Chat (Discord)", href="https://discord.gg/hvcRQRpen4"},
{name = "Technical Support Form", href="https://bluerobotics.com/technical-support/"},
{name = "Events/Conferences", href="https://bluerobotics.com/events/"},
]},
{heading = "External", links = [
{name = "ArduPilot Forum", href="https://discuss.ardupilot.org/"},
{name = "ArduPilot Developer Chat", href="https://ardupilot.org/discord"},
{name = "PX4 Forum", href="https://discuss.px4.io/"},
{name = "QGroundControl", href="https://docs.qgroundcontrol.com/master/en/qgc-user-guide/index.html"},
]},
]
# ---------------------- FOOTER ---------------------- #
[extra.sponsor]
name = "Blue Robotics"
url = "https://bluerobotics.com"
[[extra.license]]
name = "GPLv3"
url = "https://www.gnu.org/licenses/gpl-3.0.en.html#license-text"
[[extra.license]]
name = "MIT"
url = "https://opensource.org/license/mit"