2020-03-20 14:32:44 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2020-04-15 20:30:45 +00:00
|
|
|
<xsl:stylesheet version="1.1"
|
|
|
|
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
|
|
|
|
xmlns:atom="http://www.w3.org/2005/Atom"
|
|
|
|
xmlns:atom03="http://purl.org/atom/ns#"
|
|
|
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
|
|
|
xmlns:content="http://purl.org/rss/1.0/modules/content/"
|
|
|
|
xmlns:rssfake="http://purl.org/rss/1.0/"
|
|
|
|
>
|
2020-03-20 14:32:44 +00:00
|
|
|
|
|
|
|
<xsl:output method="html"/>
|
|
|
|
|
|
|
|
<xsl:template match="/">
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<title>RSS feed by morss</title>
|
2020-03-20 18:47:43 +00:00
|
|
|
<meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0;" />
|
2020-04-15 20:30:45 +00:00
|
|
|
<meta name="robots" content="noindex" />
|
2020-03-20 14:32:44 +00:00
|
|
|
|
|
|
|
<style type="text/css">
|
2020-03-20 18:47:43 +00:00
|
|
|
body {
|
|
|
|
overflow-wrap: anywhere;
|
|
|
|
word-wrap: anywhere;
|
2020-04-03 15:47:19 +00:00
|
|
|
font-family: sans;
|
2020-03-20 18:47:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#url {
|
|
|
|
background-color: rgba(255, 165, 0, 0.25);
|
|
|
|
padding: 1% 5%;
|
|
|
|
display: inline-block;
|
|
|
|
max-width: 100%;
|
|
|
|
}
|
|
|
|
|
2020-04-15 20:30:45 +00:00
|
|
|
.item {
|
2020-03-20 14:32:44 +00:00
|
|
|
background-color: #FFFAF4;
|
2020-04-15 20:30:45 +00:00
|
|
|
border: 1px solid silver;
|
|
|
|
margin: 1%;
|
2020-03-20 14:32:44 +00:00
|
|
|
max-width: 100%;
|
|
|
|
}
|
|
|
|
|
2020-04-15 21:22:45 +00:00
|
|
|
.item > * {
|
|
|
|
padding: 1%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.item > :not(:last-child) {
|
2020-04-15 20:30:45 +00:00
|
|
|
border-bottom: 1px solid silver;
|
2020-03-20 14:32:44 +00:00
|
|
|
}
|
2020-04-15 21:22:45 +00:00
|
|
|
|
|
|
|
.item > a {
|
|
|
|
|
|
|
|
display: block;
|
|
|
|
font-weight: bold;
|
|
|
|
font-size: 1.5em;
|
|
|
|
}
|
2020-03-20 14:32:44 +00:00
|
|
|
</style>
|
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
|
|
|
<h1>RSS feed by morss</h1>
|
|
|
|
|
|
|
|
<p>Your RSS feed is <strong style="color: green">ready</strong>. You
|
2020-03-20 18:46:20 +00:00
|
|
|
can enter the following url in your newsreader:</p>
|
|
|
|
|
|
|
|
<div id="url"></div>
|
2020-03-20 14:32:44 +00:00
|
|
|
|
2020-04-15 20:30:45 +00:00
|
|
|
<hr/>
|
2020-03-20 14:32:44 +00:00
|
|
|
|
2020-04-15 20:30:45 +00:00
|
|
|
<div id="header">
|
|
|
|
<h1>
|
|
|
|
<xsl:value-of select="rdf:RDF/rssfake:channel/rssfake:title|rss/channel/title|atom:feed/atom:title|atom03:feed/atom03:title"/>
|
|
|
|
</h1>
|
2020-03-20 14:32:44 +00:00
|
|
|
|
2020-04-15 20:30:45 +00:00
|
|
|
<p>
|
|
|
|
<xsl:value-of select="rdf:RDF/rssfake:channel/rssfake:description|rss/channel/description|atom:feed/atom:subtitle|atom03:feed/atom03:subtitle"/>
|
|
|
|
</p>
|
|
|
|
</div>
|
2020-03-20 14:32:44 +00:00
|
|
|
|
2020-04-15 20:30:45 +00:00
|
|
|
<div id="content">
|
|
|
|
<xsl:for-each select="rdf:RDF/rssfake:channel/rssfake:item|rss/channel/item|atom:feed/atom:entry|atom03:feed/atom03:entry">
|
|
|
|
<div class="item">
|
|
|
|
<a href="/" target="_blank"><xsl:attribute name="href"><xsl:value-of select="rssfake:link|link|atom:link/@href|atom03:link/@href"/></xsl:attribute>
|
|
|
|
<xsl:value-of select="rssfake:title|title|atom:title|atom03:title"/>
|
|
|
|
</a>
|
2020-03-20 14:32:44 +00:00
|
|
|
|
2020-04-15 20:30:45 +00:00
|
|
|
<div class="desc">
|
2020-04-15 21:22:45 +00:00
|
|
|
<xsl:copy-of select="rssfake:description|description|atom:summary|atom03:summary"/>
|
2020-04-15 20:30:45 +00:00
|
|
|
</div>
|
2020-03-20 14:32:44 +00:00
|
|
|
|
2020-04-15 20:30:45 +00:00
|
|
|
<div class="content">
|
2020-04-15 21:22:45 +00:00
|
|
|
<xsl:copy-of select="content:encoded|atom:content|atom03:content"/>
|
2020-04-15 20:30:45 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</xsl:for-each>
|
|
|
|
</div>
|
2020-03-20 14:32:44 +00:00
|
|
|
|
2020-04-15 20:30:45 +00:00
|
|
|
<script>
|
|
|
|
document.getElementById("url").innerHTML = window.location.href.replace(':html/', '')
|
|
|
|
|
|
|
|
if (!/:html/.test(window.location.href))
|
2020-04-15 21:22:45 +00:00
|
|
|
for (var content of document.querySelectorAll(".desc,.content"))
|
|
|
|
content.innerHTML = content.children.children ? content.innerHTML : content.innerText
|
2020-04-15 20:30:45 +00:00
|
|
|
</script>
|
|
|
|
</body>
|
|
|
|
</html>
|
|
|
|
</xsl:template>
|
2020-03-20 14:32:44 +00:00
|
|
|
</xsl:stylesheet>
|