Updated RSS meta
This commit is contained in:
parent
e78a164354
commit
fcac25700c
3 changed files with 20 additions and 4 deletions
5
app.vue
5
app.vue
|
@ -7,6 +7,11 @@ import './assets/style.css'
|
|||
</script>
|
||||
|
||||
<template>
|
||||
<Head>
|
||||
<!-- inform browser of /rss.xml -->
|
||||
<Link rel="alternate" type="application/rss+xml" title="RSS Feed for TheFelidae" href="/rss.xml" />
|
||||
<Link rel="alternate" type="application/rss+atom" title="RSS Feed for TheFelidae" href="/rss.xml" />
|
||||
</Head>
|
||||
<Navbar/>
|
||||
<NuxtPage :transition="{
|
||||
name: 'page',
|
||||
|
|
|
@ -4,6 +4,19 @@
|
|||
|
||||
[`thelunacy@proton.me`](mailto:thelunacy@proton.me)
|
||||
|
||||
<div style="display: flex; justify-content: center; align-items: center;">
|
||||
|
||||
<!-- /rss.xml -->
|
||||
[![RSS](https://img.shields.io/badge/RSS-Subscribe-orange?style=for-the-badge&logo=rss)](https://thefelidae.github.io/rss.xml)
|
||||
|
||||
<!-- Fediverse -->
|
||||
[![Fediverse](https://img.shields.io/badge/Fediverse-Follow-blue?style=for-the-badge&logo=mastodon)](https://social.smgames.club/@mrrp)
|
||||
|
||||
<!-- Visitors -->
|
||||
![Visitors](https://api.visitorbadge.io/api/combined?path=https%3A%2F%2Fgithub.com%2Fmisslunatic%2FMissLunatic&label=VIsitors&countColor=%23e7c4ff)
|
||||
|
||||
</div>
|
||||
|
||||
###### 🏳️⚧️ I am exploring identity, so this may change or I might go by different things elsewhere.
|
||||
|
||||
###### Regardless, try to respect this or else. I'm not here to debate my existence.
|
||||
|
@ -18,8 +31,6 @@
|
|||
|
||||
<div style="justify-content: center; display: flex; align-items: center;">
|
||||
|
||||
![Visitors](https://api.visitorbadge.io/api/combined?path=https%3A%2F%2Fgithub.com%2Fmisslunatic%2FMissLunatic&label=VIsitors&countColor=%23e7c4ff&style=plastic)
|
||||
|
||||
</div>
|
||||
|
||||
I'm a student, apprentice, hobbyist, and generally a nerd who does some coding every once and a while.
|
||||
|
|
|
@ -30,11 +30,11 @@ def history_to_rss(history):
|
|||
root.set("version", "2.0")
|
||||
channel = ET.SubElement(root, "channel")
|
||||
title = ET.SubElement(channel, "title")
|
||||
title.text = "Post History"
|
||||
title.text = "TheFelidae's Blog Updates"
|
||||
link = ET.SubElement(channel, "link")
|
||||
link.text = "https://thefelidae.github.io"
|
||||
description = ET.SubElement(channel, "description")
|
||||
description.text = "Post history of the site"
|
||||
description.text = "This feed displays updates regarding TheFelidae's blog."
|
||||
|
||||
for post in history_dict["post_history"]:
|
||||
for date, posts in post.items():
|
||||
|
|
Loading…
Add table
Reference in a new issue