mirror of
https://github.com/mfocko/blog.git
synced 2024-11-22 13:03:47 +01:00
blog: initialize
Signed-off-by: Matej Focko <mfocko@redhat.com>
This commit is contained in:
parent
2ddd0a3a05
commit
4c5cb6458c
1 changed files with 20 additions and 1 deletions
|
@ -79,7 +79,21 @@ const config = {
|
|||
],
|
||||
],
|
||||
|
||||
plugins: subjects.map(s => s.docs()),
|
||||
plugins: [
|
||||
...subjects.map(s => s.docs()),
|
||||
[
|
||||
'@docusaurus/plugin-content-blog',
|
||||
{
|
||||
id: 'blog',
|
||||
routeBasePath: 'blog',
|
||||
path: './blog',
|
||||
feedOptions: {
|
||||
type: 'all',
|
||||
copyright: `Copyright © ${new Date().getFullYear()} Matej Focko.`,
|
||||
},
|
||||
},
|
||||
],
|
||||
],
|
||||
|
||||
stylesheets: [
|
||||
{
|
||||
|
@ -98,6 +112,11 @@ const config = {
|
|||
title: "Additional materials by mf",
|
||||
items: [
|
||||
...subjects.map(s => s.navbar()),
|
||||
{
|
||||
to: "blog",
|
||||
position: "right",
|
||||
label: "Blog",
|
||||
},
|
||||
{
|
||||
href: "https://gitlab.fi.muni.cz/xfocko/kb",
|
||||
label: "GitLab",
|
||||
|
|
Loading…
Reference in a new issue