diff options
| author | Joe Carstairs <jcarstairs@scottlogic.com> | 2024-07-15 16:14:41 +0100 |
|---|---|---|
| committer | Joe Carstairs <jcarstairs@scottlogic.com> | 2024-07-15 16:14:41 +0100 |
| commit | e7f41976f1d0c0467eaf293e3524773fd4ee4eef (patch) | |
| tree | 741eab72628b0f76a3272675384f6da6a17dafad /website/src/pages/index.astro | |
| parent | ea96f40f7c0c535bc4c7d747d347893b78acb6fb (diff) | |
Feeds use max entries, and blog feed uses descriptions
Diffstat (limited to 'website/src/pages/index.astro')
| -rw-r--r-- | website/src/pages/index.astro | 4 |
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> |
