Initial commit
This commit is contained in:
32
content/.vitepress/config.js
Normal file
32
content/.vitepress/config.js
Normal file
@ -0,0 +1,32 @@
|
||||
import { defineConfig } from 'vitepress';
|
||||
import footnote from 'markdown-it-footnote'
|
||||
|
||||
export default defineConfig({
|
||||
title: 'HPG Romein',
|
||||
// description: 'A VitePress Site',
|
||||
|
||||
themeConfig: {
|
||||
sidebar: [
|
||||
{ text: 'Introductie',
|
||||
collapsed: false,
|
||||
items: [
|
||||
{ text: 'Startreflectie', link: '/intro/startreflectie' },
|
||||
],
|
||||
},
|
||||
{ text: 'Inhoud project',
|
||||
collapsed: false,
|
||||
items: [
|
||||
{ text: '1. Betonplaat', link: '/inhoud/betonplaat' },
|
||||
{ text: '2. Boek', link: '/inhoud/boek' },
|
||||
{ text: '3a. Top-30 tips', link: '/inhoud/top30' },
|
||||
],
|
||||
},
|
||||
],
|
||||
},
|
||||
|
||||
markdown: {
|
||||
config: md => {
|
||||
md.use(footnote);
|
||||
},
|
||||
},
|
||||
});
|
13
content/.vitepress/theme/custom.css
Normal file
13
content/.vitepress/theme/custom.css
Normal file
@ -0,0 +1,13 @@
|
||||
.vp-doc img {
|
||||
border-radius: 8px;
|
||||
}
|
||||
|
||||
.vp-doc .grid {
|
||||
display: grid;
|
||||
gap: 16px;
|
||||
}
|
||||
@media (min-width: 912px) {
|
||||
.vp-doc .grid {
|
||||
grid-template-columns: repeat(var(--cols, 2), 1fr);
|
||||
}
|
||||
}
|
4
content/.vitepress/theme/index.js
Normal file
4
content/.vitepress/theme/index.js
Normal file
@ -0,0 +1,4 @@
|
||||
import DefaultTheme from 'vitepress/theme';
|
||||
import './custom.css';
|
||||
|
||||
export default DefaultTheme;
|
Reference in New Issue
Block a user