diff options
Diffstat (limited to 'website/src/pages')
| -rw-r--r-- | website/src/pages/index.astro | 2 | ||||
| -rw-r--r-- | website/src/pages/links.astro | 8 |
2 files changed, 10 insertions, 0 deletions
diff --git a/website/src/pages/index.astro b/website/src/pages/index.astro index 4e9d87b..835b4d3 100644 --- a/website/src/pages/index.astro +++ b/website/src/pages/index.astro @@ -1,5 +1,6 @@ --- import BlogFeed from '../components/BlogFeed.astro'; +import LinksFeed from '../components/LinksFeed.astro'; import Me from '../components/Me.astro'; import { SITE_TITLE, SITE_DESCRIPTION } from '../consts'; import Page from '../layouts/Page.astro'; @@ -8,4 +9,5 @@ import Page from '../layouts/Page.astro'; <Page title={SITE_TITLE} description={SITE_DESCRIPTION}> <Me /> <BlogFeed hideAuthor /> + <LinksFeed hideAuthor /> </Page> diff --git a/website/src/pages/links.astro b/website/src/pages/links.astro new file mode 100644 index 0000000..1368e00 --- /dev/null +++ b/website/src/pages/links.astro @@ -0,0 +1,8 @@ +--- +import Page from '../layouts/Page.astro'; +import LinksFeed from '../components/LinksFeed.astro'; +--- + +<Page title='Links | joeac' description='Assorted links I’m accumulating.'> + <LinksFeed headingLevel={1} hideAuthor={false} /> +</Page> |
