diff options
| author | Joe Carstairs <65492573+Sycamost@users.noreply.github.com> | 2024-06-05 09:38:10 +0100 |
|---|---|---|
| committer | Joe Carstairs <65492573+Sycamost@users.noreply.github.com> | 2024-06-05 09:38:10 +0100 |
| commit | f977ee338c7eff240c26c793d7340de4a7b5788b (patch) | |
| tree | e5803001ec972c176e7a87884455ff2dcad7c6c7 /website/src/pages/links.astro | |
| parent | b5a434c9596f6792f8f574c5641d4cbe1dd5c289 (diff) | |
Adds Links page and fixes blog feed
Diffstat (limited to 'website/src/pages/links.astro')
| -rw-r--r-- | website/src/pages/links.astro | 8 |
1 files changed, 8 insertions, 0 deletions
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> |
