new URL structure for root pages and research posts, refs #115

This commit is contained in:
Hossein Mehrabi 2023-06-14 22:49:18 +03:30
parent 063c8b7efc
commit 089c48cfd3
30 changed files with 15 additions and 9 deletions

View File

@ -1,5 +1,5 @@
---
title: Main
title: About
---
# Vac - Communication & Privacy

View File

@ -36,7 +36,7 @@ const config = {
},
},
docs: {
routeBasePath: '/about',
routeBasePath: '/',
sidebarPath: 'docs/sidebars.js',
remarkPlugins: [math],
rehypePlugins: [katex],
@ -51,10 +51,10 @@ const config = {
/** @type {import('@docusaurus/plugin-content-blog').PluginOptions} */
({
id: 'blog',
routeBasePath: '/',
path: 'research',
blogSidebarCount: 'ALL',
blogSidebarTitle: 'All our posts',
routeBasePath: '/rlog',
path: 'rlog',
blogTitle: 'Rlog - Vac Research Log',
blogSidebarCount: 0,
authorsMapPath: 'authors.yml',
remarkPlugins: [math],
rehypePlugins: [katex],
@ -72,11 +72,11 @@ const config = {
},
{
label: 'About',
to: '/about',
to: '/',
},
{
label: 'Research',
to: '/',
label: 'Research Log',
to: '/rlog',
},
],
},

View File

@ -5,3 +5,9 @@ body,
html {
overflow-x: hidden;
}
.blog-wrapper {
main {
margin-left: 0 !important;
}
}