Skip to content

Commit

Permalink
add navbar and sidebar links to meeting notes blog
Browse files Browse the repository at this point in the history
  • Loading branch information
ElliotFriend committed Mar 13, 2024
1 parent e645d7d commit b6879fc
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 1 deletion.
15 changes: 14 additions & 1 deletion docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,15 @@ const config = {
"classic",
/** @type {import('@docusaurus/preset-classic').Options} */
({
blog: false,
blog: {
path: 'meeting-notes',
blogTitle: 'Meeting Notes',
blogDescription: 'Notes and recordings from the Soroban protocol & developers meetings',
blogSidebarTitle: 'All meetings',
blogSidebarCount: 'ALL',
postsPerPage: 'ALL',
routeBasePath: 'meetings',
},
docs: {
showLastUpdateTime: true,
showLastUpdateAuthor: true,
Expand Down Expand Up @@ -213,6 +221,11 @@ const config = {
},
]
},
{
to: '/meetings',
label: 'Meetings',
psition: 'right',
},
{
href: "https://github.com/stellar/stellar-docs",
label: "GitHub",
Expand Down
5 changes: 5 additions & 0 deletions sidebars.js
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,11 @@ const sidebars = {
type: 'autogenerated',
dirName: 'reference',
},
{
type: 'link',
label: 'Meeting Notes',
href: '/meetings',
},
],
};

Expand Down

0 comments on commit b6879fc

Please sign in to comment.