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