summaryrefslogtreecommitdiff
path: root/website/src/pages
diff options
context:
space:
mode:
authorJoe Carstairs <jcarstairs@scottlogic.com>2024-07-15 16:14:41 +0100
committerJoe Carstairs <jcarstairs@scottlogic.com>2024-07-15 16:14:41 +0100
commite7f41976f1d0c0467eaf293e3524773fd4ee4eef (patch)
tree741eab72628b0f76a3272675384f6da6a17dafad /website/src/pages
parentea96f40f7c0c535bc4c7d747d347893b78acb6fb (diff)
Feeds use max entries, and blog feed uses descriptions
Diffstat (limited to 'website/src/pages')
-rw-r--r--website/src/pages/index.astro4
1 files changed, 2 insertions, 2 deletions
diff --git a/website/src/pages/index.astro b/website/src/pages/index.astro
index 835b4d3..cbd7037 100644
--- a/website/src/pages/index.astro
+++ b/website/src/pages/index.astro
@@ -8,6 +8,6 @@ import Page from '../layouts/Page.astro';
<Page title={SITE_TITLE} description={SITE_DESCRIPTION}>
<Me />
- <BlogFeed hideAuthor />
- <LinksFeed hideAuthor />
+ <BlogFeed hideAuthor maxEntries={3} />
+ <LinksFeed hideAuthor maxEntries={5} />
</Page>