mirror of
https://github.com/Ocelot-Social-Community/ocelot.social.git
synced 2025-12-13 07:46:08 +00:00
45 lines
1.2 KiB
JavaScript
45 lines
1.2 KiB
JavaScript
import { hopeTheme } from 'vuepress-theme-hope'
|
|
|
|
export default hopeTheme({
|
|
favicon: 'favicon.ico',
|
|
logo: '/logo.svg',
|
|
docsRepo: 'https://github.com/Ocelot-Social-Community/ocelot.social',
|
|
docsBranch: 'master',
|
|
docsDir: 'docs',
|
|
editLink: true,
|
|
lastUpdated: false,
|
|
contributors: false,
|
|
displayFooter: true,
|
|
print: false,
|
|
copyright: '© by <a href="https://busfaktor.org" target="_blank">busFaktor() e.V.</a> & Authors | <a href="/impressum/">Impressum</a>',
|
|
footer: 'Released under the <a class="vt-link link link" href="https://opensource.org/licenses/MIT" target="_blank" rel="noopener noreferrer"><!--[-->MIT License<!--]--><!----></a>.',
|
|
navbar: [
|
|
{
|
|
text: 'Documentation', link: 'https://docs.ocelot.social/'
|
|
},
|
|
{
|
|
text: 'Demo', link: 'https://stage.ocelot.social/'
|
|
},
|
|
{
|
|
text: 'Github',
|
|
link: 'https://github.com/Ocelot-Social-Community'
|
|
},
|
|
{
|
|
text: 'Impressum',
|
|
link: '/impressum/'
|
|
},
|
|
],
|
|
plugins: {
|
|
mdEnhance: {
|
|
align: true,
|
|
demo: true,
|
|
imgLazyload: true,
|
|
imgMark: true,
|
|
imgSize: true,
|
|
sub: true,
|
|
sup: true,
|
|
vPre: true,
|
|
}
|
|
}
|
|
})
|