Move files around

This commit is contained in:
~lucidiot 2021-02-13 21:30:45 +00:00
parent cc3d034a2e
commit fcb70080aa
7 changed files with 9 additions and 9 deletions

View File

@ -1,2 +1,2 @@
feeds.opml: feed.xml opml.xsl
xsltproc --stringparam current-date "$(shell date -R)" -o feeds.opml opml.xsl feed.xml
opml/feeds.opml: feed.xml xsl/opml.xsl
xsltproc --stringparam current-date "$(shell date -R)" -o opml/feeds.opml xsl/opml.xsl feed.xml

View File

@ -1,6 +1,6 @@
<?xml version="1.0"?>
<?xml-stylesheet href="style.xsl" type="text/xsl"?>
<?xml-stylesheet href="fallback.css" type="text/css" alternate="yes"?>
<?xml-stylesheet href="xsl/style.xsl" type="text/xsl"?>
<?xml-stylesheet href="css/fallback.css" type="text/css" alternate="yes"?>
<rss
version="2.0"
xmlns:admin="http://webns.net/mvcb/"
@ -38,7 +38,7 @@
<image>
<link>https://envs.net/~lucidiot/rsrsss/</link>
<title>Animated glitchy RSS logo</title>
<url>https://envs.net/~lucidiot/rsrsss/image.gif</url>
<url>https://envs.net/~lucidiot/rsrsss/img/image.gif</url>
<description>RSRSSS logo</description>
<width>144</width>
<height>144</height>
@ -61,7 +61,7 @@
<category domain="https://envs.net/~lucidiot/rsrsss/">Meta</category>
<category domain="https://envs.net/~lucidiot/rsrsss/">XSL</category>
<description><![CDATA[
<p>I added <a href="https://envs.net/~lucidiot/rsrsss/style.xsl">an XSLT stylesheet</a> to this RSS feed! This means that when you open this feed in a web browser that does not support subscribing to RSS feeds, you will instead get a nice looking page without me ever writing actual raw HTML. In older or less common web browsers that still support RSS subscriptions (as every good web browser should), such as Pale Moon, you will still get the default page that asks you if you want to subscribe.</p>
<p>I added <a href="https://envs.net/~lucidiot/rsrsss/xsl/style.xsl">an XSLT stylesheet</a> to this RSS feed! This means that when you open this feed in a web browser that does not support subscribing to RSS feeds, you will instead get a nice looking page without me ever writing actual raw HTML. In older or less common web browsers that still support RSS subscriptions (as every good web browser should), such as Pale Moon, you will still get the default page that asks you if you want to subscribe.</p>
<p>Some of my friends had mentioned adding RSS to their static site generators was hard; how about turning your index page into the RSS feed, and letting browsers generate the HTML for you?</p>
]]></description>
</item>
@ -151,9 +151,9 @@
<guid isPermaLink="false">rsrsss-opml</guid>
<category domain="https://envs.net/~lucidiot/rsrsss/">Meta</category>
<category domain="https://envs.net/~lucidiot/rsrsss/">OPML</category>
<link>https://envs.net/~lucidiot/rsrsss/feeds.opml</link>
<link>https://envs.net/~lucidiot/rsrsss/opml/feeds.opml</link>
<description><![CDATA[
<p>I added <a href="https://envs.net/~lucidiot/rsrsss/opml.xsl">yet another XSLT stylesheet</a> and there is now an OPML subscriptions file available if you are feeling lazy and want to add all the feeds I talk about here. It is built by hand using a Makefile—I need to remember to run it on every new feed…</p>
<p>I added <a href="https://envs.net/~lucidiot/rsrsss/xsl/opml.xsl">yet another XSLT stylesheet</a> and there is now an OPML subscriptions file available if you are feeling lazy and want to add all the feeds I talk about here. It is built by hand using a Makefile—I need to remember to run it on every new feed…</p>
]]></description>
</item>

View File

Before

Width:  |  Height:  |  Size: 244 KiB

After

Width:  |  Height:  |  Size: 244 KiB

View File

@ -11,7 +11,7 @@
<html>
<head>
<title><xsl:value-of select="/rss/channel/title" /></title>
<link rel="stylesheet" type="text/css" href="style.css" />
<link rel="stylesheet" type="text/css" href="css/style.css" />
<link rel="icon" href="favicon.ico" type="image/x-icon" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
</head>