mirror of
https://github.com/IT4Change/IT4C.dev.git
synced 2025-12-13 09:25:49 +00:00
85 lines
1.9 KiB
JavaScript
85 lines
1.9 KiB
JavaScript
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,
|
|
displayFooter: true,
|
|
footer: 'CC BY IT4C.dev & Authors - <a href="/imprint.html">Imprint</a>',
|
|
navbar: [
|
|
{ text: 'IT4C', link: '/' },
|
|
{ text: 'Contact', link: '/contact' },
|
|
{
|
|
text: 'Github',
|
|
link: 'https://github.com/IT4Change'
|
|
},
|
|
],
|
|
sidebar: [
|
|
{
|
|
text: 'IT4C',
|
|
link: '/',
|
|
collapsible: false,
|
|
children: [
|
|
'/history',
|
|
'/contact'
|
|
]
|
|
},
|
|
{
|
|
text: 'Projects',
|
|
collapsible: false,
|
|
children: [
|
|
{
|
|
text: 'DEMOCRACY App',
|
|
link: '/projects/democracy.app'
|
|
},
|
|
{
|
|
text: 'Ocelot-Social',
|
|
link: '/projects/ocelot.social'
|
|
},
|
|
{
|
|
text: 'Gradido Software',
|
|
link: '/projects/gradido'
|
|
},
|
|
{
|
|
text: 'DreamMall.earth',
|
|
link: '/projects/dreammall'
|
|
},
|
|
// { link: '/extras/contributing', text: 'Contributing ✨' },
|
|
// { link: '/extras/license', text: 'License 📚' },
|
|
]
|
|
},
|
|
{
|
|
text: 'People',
|
|
collapsible: false,
|
|
children: [
|
|
'/people/alexander-friedland',
|
|
'/people/hannes-heine',
|
|
{ link: '/people/mathias-lenz', text: 'Mathias Lenz' },
|
|
'/people/moriz-wahl',
|
|
'/people/ulf-gebhardt',
|
|
'/people/wolfgang-huss'
|
|
]
|
|
},
|
|
],
|
|
plugins: {
|
|
searchPro: {
|
|
indexContent: true,
|
|
autoSuggestions: true,
|
|
customFields: [
|
|
{
|
|
getter: (page) => page.frontmatter.category,
|
|
formatter: "Category: $content",
|
|
},
|
|
{
|
|
getter: (page) => page.frontmatter.tag,
|
|
formatter: "Tag: $content",
|
|
},
|
|
],
|
|
},
|
|
},
|
|
})
|