import { hopeTheme } from 'vuepress-theme-hope'
export default hopeTheme({
favicon: 'favicon.ico',
logo: '/logo.svg',
docsRepo: 'https://github.com/Ocelot-Social-Community/ocelot.social',
repo: 'https://github.com/Ocelot-Social-Community/Ocelot-Social',
docsBranch: 'master',
docsDir: 'docs',
editLink: true,
lastUpdated: false,
contributors: false,
displayFooter: true,
print: false,
navbarLayout: {
start: ["Brand"],
center: ["Links"],
end: ["Language", "Repo", "Outlook", "Search"],
},
locales:{
// The key is the path for the locale to be nested under.
// As a special case, the default locale can use '/' as its path.
'/de/': {
lang: 'de-DE',
title: 'Ocelot.Social',
copyright: '© von busFaktor() e.V. & Authoren | Impressum',
footer: 'Unter der MIT Lizenz ausgeliefert.',
navbar: [
{
text: 'Funktionen',
link: '/de/features/'
},
{
text: 'Einstieg',
link: '/de/get-started/'
},
{
text: 'Dokumentation',
link: 'https://docs.ocelot.social/' ,
target: '_self',
},
{
text: 'Demo',
link: 'https://stage.ocelot.social/',
target: '_self',
},
{
text: 'Impressum',
link: '/de/imprint/'
},
],
},
'/en/': {
lang: 'en-US', // this will be set as the lang attribute on
title: 'Ocelot.Social',
// description: ''
copyright: '© by busFaktor() e.V. & Authors | Imprint',
footer: 'Released under the MIT License.',
navbar: [
{
text: 'Features',
link: '/en/features/'
},
{
text: 'Get Started',
link: '/en/get-started/'
},
{
text: 'Documentation',
link: 'https://docs.ocelot.social/',
target: '_self',
},
{
text: 'Demo',
link: 'https://stage.ocelot.social/',
target: '_self',
},
{
text: 'Imprint',
link: '/en/imprint/'
},
],
},
'/fr/': {
lang: 'fr-FR',
title: 'Ocelot.Social',
copyright: '© par busFaktor() e.V. & Auteurs | Mentions légales',
footer: 'Publié sous la licence MIT.',
navbar: [
{
text: 'Fonctionnalités',
link: '/fr/features/'
},
{
text: 'Entrée',
link: '/fr/get-started/'
},
{
text: 'Documentation',
link: 'https://docs.ocelot.social/',
target: '_self',
},
{
text: 'Demo',
link: 'https://stage.ocelot.social/',
target: '_self',
},
{
text: 'Mentions légales',
link: '/fr/imprint/'
},
],
}
},
plugins: {
blog: {
excerptLength: 0,
},
mdEnhance: {
align: true,
demo: true,
imgLazyload: true,
imgMark: true,
imgSize: true,
sub: true,
sup: true,
vPre: true,
},
searchPro: {
indexContent: true,
autoSuggestions: true,
customFields: [
{
getter: (page) => page.frontmatter.category,
formatter: "Category: $content",
},
{
getter: (page) => page.frontmatter.tag,
formatter: "Tag: $content",
},
],
},
seo: true,
}
})