mirror of
https://github.com/IT4Change/IT4C.dev.git
synced 2025-12-12 17:05:50 +00:00
78 lines
1.7 KiB
TypeScript
78 lines
1.7 KiB
TypeScript
import { hopeTheme } from 'vuepress-theme-hope'
|
|
|
|
export default hopeTheme({
|
|
logo: '/it4c-logo2-clean-bg_alpha-128x128.png',
|
|
docsRepo: 'https://github.com/IT4Change/IT4C.dev',
|
|
docsBranch: 'master',
|
|
docsDir: 'docs',
|
|
editLink: true,
|
|
lastUpdated: false,
|
|
contributors: false,
|
|
print: false,
|
|
displayFooter: true,
|
|
pageInfo: false,
|
|
footer: 'CC BY IT4C.dev & Autoren - <a href="/impressum.html">Impressum</a>',
|
|
navbar: [
|
|
{ text: 'IT4C', link: '/' },
|
|
{ text: 'Kontakt', link: '/kontakt' },
|
|
{
|
|
text: 'Github',
|
|
link: 'https://github.com/IT4Change',
|
|
},
|
|
],
|
|
sidebar: [
|
|
{
|
|
text: 'Startseite',
|
|
link: '/',
|
|
collapsible: false,
|
|
},
|
|
{
|
|
text: 'IT4C',
|
|
link: '/it4c',
|
|
collapsible: false,
|
|
children: ['/historie', '/kontakt'],
|
|
},
|
|
{
|
|
text: 'Projekte',
|
|
collapsible: false,
|
|
children: [
|
|
{
|
|
text: 'DEMOCRACY App',
|
|
link: '/projekte/democracy.app',
|
|
},
|
|
{
|
|
text: 'Ocelot.Social',
|
|
link: '/projekte/ocelot.social',
|
|
},
|
|
{
|
|
text: 'Gradido Software',
|
|
link: '/projekte/gradido',
|
|
},
|
|
{
|
|
text: 'DreamMall.earth',
|
|
link: '/projekte/dreammall',
|
|
},
|
|
],
|
|
},
|
|
{
|
|
text: 'Team',
|
|
collapsible: false,
|
|
children: [
|
|
'/team/alexander-friedland',
|
|
'/team/hannes-heine',
|
|
{ link: '/team/mathias-lenz', text: 'Mathias Lenz' },
|
|
'/team/maximilian-harz',
|
|
'/team/moriz-wahl',
|
|
'/team/sebastian-stein',
|
|
'/team/ulf-gebhardt',
|
|
'/team/wolfgang-huss',
|
|
],
|
|
},
|
|
],
|
|
plugins: {
|
|
slimsearch: {
|
|
indexContent: true,
|
|
},
|
|
},
|
|
})
|