mirror of
https://github.com/draussenfunker/draussenfunker.github.io.git
synced 2025-12-31 08:29:17 +00:00
reformat strings
This commit is contained in:
parent
3cc77e346a
commit
e81751544e
1 changed files with 37 additions and 32 deletions
|
|
@ -1,60 +1,65 @@
|
|||
const { defaultTheme } = require('@vuepress/theme-default')
|
||||
const { socialSharePlugin } = require(`vuepress-plugin-social-share`)
|
||||
const { registerComponentsPlugin } = require('@vuepress/plugin-register-components')
|
||||
const { path } = require('@vuepress/utils')
|
||||
const { usePagesPlugin } = require('vuepress-plugin-use-pages')
|
||||
const { defaultTheme } = require("@vuepress/theme-default");
|
||||
const { socialSharePlugin } = require(`vuepress-plugin-social-share`);
|
||||
const {
|
||||
registerComponentsPlugin,
|
||||
} = require("@vuepress/plugin-register-components");
|
||||
const { path } = require("@vuepress/utils");
|
||||
const { usePagesPlugin } = require("vuepress-plugin-use-pages");
|
||||
|
||||
module.exports = {
|
||||
lang: 'de-DE',
|
||||
title: 'Draussenfunker.de | QRV im Grünen',
|
||||
description: 'Wir sind eine Gruppe von Funkamateuren, die sich mit dem Thema Funken im Freien beschäftigt.',
|
||||
lang: "de-DE",
|
||||
title: "Draussenfunker.de | QRV im Grünen",
|
||||
description:
|
||||
"Wir sind eine Gruppe von Funkamateuren, die sich mit dem Thema Funken im Freien beschäftigt.",
|
||||
plugins: [
|
||||
usePagesPlugin({ startsWith: '/aktivitaeten/'}),
|
||||
usePagesPlugin({ startsWith: "/aktivitaeten/" }),
|
||||
socialSharePlugin(),
|
||||
registerComponentsPlugin({
|
||||
componentsDir: path.resolve(__dirname, './components'),
|
||||
})
|
||||
componentsDir: path.resolve(__dirname, "./components"),
|
||||
}),
|
||||
],
|
||||
theme: defaultTheme({
|
||||
sidebarDepth: 2,
|
||||
contributors: false,
|
||||
notFound: ['Sorry, etwas ist schief gelaufen.'],
|
||||
backToHome: 'Zurück zur Startseite',
|
||||
lastUpdatedText: 'Aktualisiert am',
|
||||
hostname: "https://draussenfunker.de",
|
||||
|
||||
notFound: ["Sorry, etwas ist schief gelaufen."],
|
||||
backToHome: "Zurück zur Startseite",
|
||||
lastUpdatedText: "Aktualisiert am",
|
||||
navbar: [
|
||||
// NavbarItem
|
||||
{
|
||||
text: 'Start',
|
||||
link: '/',
|
||||
text: "Start",
|
||||
link: "/",
|
||||
},
|
||||
{
|
||||
text: 'Aktivitäten',
|
||||
link: '/aktivitaeten',
|
||||
text: "Aktivitäten",
|
||||
link: "/aktivitaeten",
|
||||
},
|
||||
{
|
||||
text: 'Amateurfunk',
|
||||
link: '/amateurfunk',
|
||||
text: "Amateurfunk",
|
||||
link: "/amateurfunk",
|
||||
},
|
||||
{
|
||||
text: 'Mitmachen',
|
||||
link: '/mitmachen',
|
||||
text: "Mitmachen",
|
||||
link: "/mitmachen",
|
||||
},
|
||||
{
|
||||
text: 'DIY',
|
||||
text: "DIY",
|
||||
children: [
|
||||
'/diy/teleskop-viertelwellen-vertical',
|
||||
'/diy/efhw',
|
||||
'/diy/portabelrucksack'
|
||||
"/diy/teleskop-viertelwellen-vertical",
|
||||
"/diy/efhw",
|
||||
"/diy/portabelrucksack",
|
||||
],
|
||||
},
|
||||
{
|
||||
text: 'FAQ',
|
||||
link: '/faq',
|
||||
text: "FAQ",
|
||||
link: "/faq",
|
||||
},
|
||||
{
|
||||
text: 'Impressum',
|
||||
link: '/impressum',
|
||||
},
|
||||
text: "Impressum",
|
||||
link: "/impressum",
|
||||
},
|
||||
],
|
||||
}),
|
||||
}
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue