documentation/index.js

30 lines
998 B
JavaScript
Raw Normal View History

2021-01-13 19:16:10 +01:00
new Docute({
// Overrides for all languages
router: {
mode: "history",
},
overrides: {
"/v0.2/": {
sourcePath: "https://itsblue.dev/ScStw/app/raw/0.1",
},
"/": {
// Define some general stuff
title: "ScStw - Dokumentation",
language: "Deutsch",
2021-01-13 19:33:39 +01:00
sourcePath: "https://itsblue.dev/ScStw/documentation/raw/master/de",
2021-01-13 19:16:10 +01:00
// Define the sidebar
sidebar: [
2021-01-14 14:21:15 +01:00
{ title: "Wartung", link: "/maintainance" },
2021-01-13 19:16:10 +01:00
],
},
},
detectSystemDarkTheme: true,
darkThemeToggler: true,
2021-01-13 21:09:24 +01:00
footer: `
<div style="border-top:1px solid var(--border-color);padding-top:30px;margin: 40px 0;color:#999999;font-size: .9rem;">
Want more information? Feel free to contact us <a href="https://itsblue.de/contact" target="blank">on our website</a> or at <a href="mailto:contact@itsblue.de">contact@itsblue.de</a>.<br>
&copy; ${new Date().getFullYear()} Itsblue Development.
</div>
`,
2021-01-13 19:16:10 +01:00
});