diff options
author | squibid <me@zacharyscheiman.com> | 2023-03-11 15:01:56 -0500 |
---|---|---|
committer | squibid <me@zacharyscheiman.com> | 2023-03-11 15:01:56 -0500 |
commit | d99696640c16738a33123114db94a073ac24ad0a (patch) | |
tree | 3791756021587c63085308af32cfae2e71a75319 /blog/rss.xml | |
parent | 2ca0d8d3fb9420ac2158eff74d2f657a4382e649 (diff) | |
download | site-d99696640c16738a33123114db94a073ac24ad0a.tar.gz site-d99696640c16738a33123114db94a073ac24ad0a.tar.bz2 site-d99696640c16738a33123114db94a073ac24ad0a.zip |
add blog generator + rss feed/feed generator
Diffstat (limited to '')
-rw-r--r-- | blog/rss.xml | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/blog/rss.xml b/blog/rss.xml new file mode 100644 index 0000000..f973733 --- /dev/null +++ b/blog/rss.xml @@ -0,0 +1,39 @@ +<?xml version="1.0" encoding="utf-8"?> +<?xml-stylesheet type="text/css" href="rss.css" ?> +<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"> + +<channel> +<title>Your RSS Feed Title</title> +<description>A brief description of your RSS feed.</description> +<language>en-us</language> +<link>http://yourwebsite.com/rss.xml</link> +<atom:link href="http://squi.bid/blog/rss.xml" rel="self" type="application/rss+xml" /> + +<!-- LB --> + +<item> +<title>state of the site</title> +<guid>https://squi.bid/state-of-the-site.html</guid> +<link>https://squi.bid/state-of-the-site.html</link> +<pubDate>Sat, 11 Mar 2023 15:00:32 -0500</pubDate> +<description><![CDATA[ +<p> +Hello o/, and welcome to my website!<br> +As of right now I am still setting things up, I have a git server running but I am +still working on getting cloning to work via https. On top of the git server I also +have a cgit instance which I have gotten close to perfect (for some reason the site +is only sometimes in darkmode). +<br><br> +As of right now that is all I've got running but I might be setting up a SearXNG +instance soon. +<br><br> +However somethings that I will never put on my server are: <br> + - social media frontend's eg: invious, and mastadon <br> + - probably some other things that I can't think about right now <br> +</p> +]]></description> +</item> + +</channel> +</rss> + |