This repository has been archived by the owner on Sep 27, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
/
docusaurus.config.js
97 lines (97 loc) · 2.37 KB
/
docusaurus.config.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
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
module.exports = {
title: 'Warewulf',
tagline: 'A stateless and diskless container operating system provisioning system for large clusters of bare metal and/or virtual systems.',
url: 'https://warewulf.org',
baseUrl: '/',
onBrokenLinks: 'throw',
onBrokenMarkdownLinks: 'warn',
favicon: 'img/favicon.png',
organizationName: 'hpcng',
projectName: 'warewulf-web-old',
themeConfig: {
navbar: {
title: 'Warewulf',
logo: {
alt: 'Warewulf Logo',
src: 'img/logo.png',
},
items: [
{
to: 'docs/',
activeBasePath: 'docs',
label: 'Docs',
position: 'left',
},
{to: 'news', label: 'News', position: 'left'},
{
href: 'https://github.com/hpcng/warewulf',
label: 'GitHub',
position: 'right',
},
],
},
footer: {
style: 'light',
links: [
{
title: 'Docs',
items: [
{
label: 'Getting Started',
to: 'docs',
},
],
},
{
title: 'Community',
items: [
{
label: 'Slack',
href: 'https://join.slack.com/t/hpcng/shared_invite/zt-qda4h1ls-OP0Uouq6sSmVE6i_0NrWdw',
},
{
label: 'YouTube',
href: 'https://www.youtube.com/channel/UCQbKq1vIffqRAMUDPfHcU0w',
},
],
},
{
title: 'More',
items: [
{
label: 'News',
to: 'news',
},
{
label: 'GitHub',
href: 'https://github.com/hpcng/warewulf',
},
],
},
],
copyright: `Copyright © ${new Date().getFullYear()} HPCng. - All Rights Reserved.`,
},
},
presets: [
[
'@docusaurus/preset-classic',
{
docs: {
sidebarPath: require.resolve('./sidebars.js'),
editUrl:
'https://github.com/hpcng/warewulf-web-old/edit/main/',
},
blog: {
showReadingTime: true,
editUrl:
'https://github.com/hpcng/warewulf-web-old/edit/main/blog/',
routeBasePath: 'news',
path: './news',
},
theme: {
customCss: require.resolve('./src/css/custom.css'),
},
},
],
],
};