Skip to content

Commit

Permalink
fix: only render 1 article on landing page instead of 10
Browse files Browse the repository at this point in the history
  • Loading branch information
spencerlepine committed Mar 30, 2024
1 parent 7ca5672 commit bb4aa6d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion blog/authors.yml
@@ -1,5 +1,5 @@
spencerlepine:
name: Spencer Lepine
title: Full Stack Developer
title: Software Engineer
url: https://github.com/spencerlepine
image_url: https://github.com/spencerlepine.png
9 changes: 5 additions & 4 deletions docusaurus.config.js
Expand Up @@ -47,6 +47,7 @@ const config = {
editUrl: 'https://github.com/spencerlepine/blog',
blogSidebarTitle: 'All posts',
blogSidebarCount: 'ALL',
postsPerPage: 1,
},
theme: {
customCss: './src/css/custom.css',
Expand Down Expand Up @@ -106,31 +107,31 @@ const config = {
metadata: [
{
property: 'og:title',
content: 'Spencer Lepine | Full Stack Developer',
content: 'Spencer Lepine | Software Engineer',
},
{
property: 'og:image',
content: 'https://spencerlepine.github.io/images/thumbnail.jpg',
},
{
property: 'og:description',
content: 'Website of Spencer Lepine, a full stack developer.',
content: 'Website of Spencer Lepine, a Software Engineer.',
},
{
name: 'twitter:card',
content: 'summary_large_image',
},
{
name: 'twitter:title',
content: 'Spencer Lepine | Full Stack Developer',
content: 'Spencer Lepine | Software Engineer',
},
{
name: 'twitter:image',
content: 'https://spencerlepine.github.io/images/thumbnail.jpg',
},
{
name: 'twitter:description',
content: 'Website of Spencer Lepine, a full stack developer.',
content: 'Website of Spencer Lepine, a Software Engineer.',
},
],
}),
Expand Down

0 comments on commit bb4aa6d

Please sign in to comment.