Add RSS links
This commit is contained in:
@@ -14,7 +14,7 @@ const posts = await Astro.glob("../posts/*.md");
|
||||
const tags = getTags(posts);
|
||||
---
|
||||
|
||||
<!DOCTYPE html>
|
||||
<!doctype html>
|
||||
<html lang="en-us">
|
||||
<BaseHead title={SITE_TITLE} description={SITE_DESCRIPTION} />
|
||||
<body>
|
||||
@@ -28,6 +28,13 @@ const tags = getTags(posts);
|
||||
|
||||
<HomePosts allPosts={posts} />
|
||||
|
||||
<p class="center">
|
||||
You can also <a href="https://blog.cassidoo.co/rss.xml">
|
||||
subscribe with RSS!
|
||||
</a>
|
||||
</p>
|
||||
<br />
|
||||
|
||||
<Tags tags={tags} all />
|
||||
</main>
|
||||
<Footer />
|
||||
|
||||
@@ -15,7 +15,7 @@ const posts = (await Astro.glob("../posts/*.md")).sort(
|
||||
);
|
||||
---
|
||||
|
||||
<!DOCTYPE html>
|
||||
<!doctype html>
|
||||
<html lang="en-us">
|
||||
<BaseHead title={SITE_TITLE} description={SITE_DESCRIPTION} />
|
||||
<body>
|
||||
@@ -33,6 +33,13 @@ const posts = (await Astro.glob("../posts/*.md")).sort(
|
||||
}
|
||||
</ul>
|
||||
</content>
|
||||
|
||||
<p class="center">
|
||||
You can also <a href="https://blog.cassidoo.co/rss.xml">
|
||||
subscribe with RSS!
|
||||
</a>
|
||||
</p>
|
||||
|
||||
<Footer />
|
||||
</main>
|
||||
<ColorScript />
|
||||
|
||||
Reference in New Issue
Block a user