2024-04-29 21:08:30 +00:00
<?xml version="1.0" encoding="UTF-8"?>
2024-04-30 00:02:52 +00:00
<!-- adapted from https://github.com/getnikola/nikola/blob/master/nikola/data/themes/base/assets/xml/rss.xsl -->
2024-04-29 21:08:30 +00:00
<xsl:stylesheet xmlns:xsl= "http://www.w3.org/1999/XSL/Transform" xmlns:atom= "http://www.w3.org/2005/Atom" xmlns:dc= "http://purl.org/dc/elements/1.1/" version= "1.0" >
<xsl:output method= "xml" />
<xsl:template match= "/" >
<html xmlns= "http://www.w3.org/1999/xhtml" lang= "en" >
<head >
<meta charset= "UTF-8" />
<meta name= "viewport" content= "width=device-width" />
<title > <xsl:value-of select= "rss/channel/title" /> (RSS)</title>
2024-04-30 00:50:52 +00:00
<style > <![CDATA[html{margin:0;padding:0;}body{color:font-size:1.1rem;line-height:1.4;margin:5%;max-width:35rem;padding:0;}input{min-width:20rem;margin-left:.2rem;padding-left:.2rem;padding-right:.2rem;}h2{font-size:22px;font-weight:inherit;}h3:before{content:"" !important;}]]> </style>
2024-04-29 21:18:13 +00:00
<link rel= "apple-touch-icon" sizes= "180x180" href= "/icons/apple-touch-icon.png" />
<link rel= "icon" type= "image/png" sizes= "32x32" href= "/icons/favicon-32x32.png" />
<link rel= "icon" type= "image/png" sizes= "16x16" href= "/icons/favicon-16x16.png" />
<link rel= "manifest" href= "/icons/site.webmanifest" />
<link rel= "mask-icon" href= "/icons/safari-pinned-tab.svg" color= "#5bbad5" />
<link rel= "shortcut icon" href= "/icons/favicon.ico" />
2024-04-29 21:08:30 +00:00
<link rel= "stylesheet" href= "/css/palettes/runtimeterror.css" />
<link rel= "stylesheet" href= "/css/risotto.css" />
<link rel= "stylesheet" href= "/css/custom.css" />
</head>
<body >
<h1 > <xsl:value-of select= "rss/channel/title" /> (RSS)</h1>
2024-04-29 21:32:02 +00:00
<p > This is an <abbr title= "Really Simple Syndication" > RSS</abbr> feed. To subscribe to it, copy its address and paste it when your feed reader asks for it. It will be updated periodically in your reader.</p>
<p > New to feeds? <a href= "https://grep.vpota.to/search?q=how+to+get+started+with+rss+feeds" title= "Search on the web to learn more" > Learn more</a> .</p>
2024-04-29 21:08:30 +00:00
<p >
<label for= "address" > RSS address:</label>
<input > <xsl:attribute name= "type" > url</xsl:attribute> <xsl:attribute name= "id" > address</xsl:attribute> <xsl:attribute name= "spellcheck" > false</xsl:attribute> <xsl:attribute name= "value" > <xsl:value-of select= "rss/channel/atom:link[@rel='self']/@href" /> </xsl:attribute> </input>
</p>
2024-04-30 00:50:52 +00:00
<p > <h2 > Recent posts:</h2> </p>
2024-04-29 21:32:02 +00:00
<ul >
2024-04-29 21:08:30 +00:00
<xsl:for-each select= "rss/channel/item" >
2024-04-30 00:50:52 +00:00
<li > <h3 > <a > <xsl:attribute name= "href" > <xsl:value-of select= "link" /> </xsl:attribute> <xsl:value-of select= "title" /> </a> </h3> </li>
2024-04-29 21:08:30 +00:00
</xsl:for-each>
2024-04-29 21:32:02 +00:00
</ul>
2024-04-29 21:08:30 +00:00
</body>
</html>
</xsl:template>
</xsl:stylesheet>