mirror of
https://github.com/draussenfunker/draussenfunker.github.io.git
synced 2025-12-31 08:29:17 +00:00
[FEAURE] Add basic blog system. Add first activity report
This commit is contained in:
parent
1b6f884bfb
commit
4ef40b5802
9 changed files with 361 additions and 15 deletions
|
|
@ -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',
|
||||
}
|
||||
],
|
||||
}),
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue