-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathvars.js
39 lines (33 loc) · 927 Bytes
/
vars.js
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
const latestVersion = "4.2.0";
module.exports = {
title: "LibreTime",
description: "Radio Broadcast & Automation Platform",
version: latestVersion,
website: "https://libretime.org",
repository: {
href: "https://github.com/libretime/libretime",
label: "Github",
},
forum: {
href: "https://discourse.libretime.org",
label: "Forum",
},
channel: {
href: "https://matrix.to/#/#libretime:matrix.org",
label: "Chat",
},
home: {
links: [
{ label: "Get started 🚀", to: "/docs/admin-manual" },
{ label: "Release note", to: `/docs/releases/${latestVersion}` },
],
},
doc: {
sections: [
{ label: "Admin manual", to: "/docs/admin-manual" },
{ label: "User manual", to: "/docs/user-manual" },
{ label: "Developer manual", to: "/docs/developer-manual" },
{ label: "Contributor manual", to: "/docs/contributor-manual" },
],
},
};