fix: add posts to rss.xml

This commit is contained in:
Sean McPherson
2022-12-19 06:49:28 -05:00
parent 2b5008fce9
commit cd303a03a6
4 changed files with 23 additions and 9 deletions

View File

@@ -1,6 +1,8 @@
---
import "../style/global.css";
import { SITE_TITLE } from "../config"
const { title, description, image = "/home-blog-card.png" } = Astro.props;
---
@@ -38,4 +40,7 @@ const { title, description, image = "/home-blog-card.png" } = Astro.props;
href="https://fonts.googleapis.com/css?family=Roboto+Mono"
rel="stylesheet"
/>
<!-- RSS Link -->
<link rel="alternate" href="/rss.xml" type="application/rss+xml" title={SITE_TITLE}>
</head>