[FEAURE] Add basic blog system. Add first activity report

This commit is contained in:
Nikolas Hagelstein 2022-08-17 22:38:28 +02:00
parent 1b6f884bfb
commit 4ef40b5802
9 changed files with 361 additions and 15 deletions

View file

@ -1,14 +1,19 @@
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äftigen.',
plugins: [
usePagesPlugin({ startsWith: '/aktivitaeten/'}),
socialSharePlugin(),
registerComponentsPlugin({
componentsDir: path.resolve(__dirname, './components'),
})
],
theme: defaultTheme({
sidebarDepth: 2,
@ -22,6 +27,10 @@ module.exports = {
text: 'Start',
link: '/',
},
{
text: 'Aktivitäten',
link: '/aktivitaeten',
},
{
text: 'DIY',
children: [
@ -33,10 +42,6 @@ module.exports = {
text: 'Wissenswertes',
children: ['/wissenswertes/amateurfunk', '/wissenswertes/ausbreitung'],
},
{
text: 'Blog',
link: '/blog',
}
],
}),
}