diff options
author | gramanas <anastasis.gramm2@gmail.com> | 2018-05-03 03:06:50 +0300 |
---|---|---|
committer | gramanas <anastasis.gramm2@gmail.com> | 2018-05-03 12:09:27 +0300 |
commit | 3a3424774944a421e1b93cbaf533a3500a4d613c (patch) | |
tree | 8780bec2bbacde34cf861b7cd4dc11f6f07e813f /docs/assets/xml | |
parent | ac8a32e855b078e137fe5de4c2bbf9628c004532 (diff) | |
download | ck-3a3424774944a421e1b93cbaf533a3500a4d613c.tar.gz ck-3a3424774944a421e1b93cbaf533a3500a4d613c.tar.bz2 ck-3a3424774944a421e1b93cbaf533a3500a4d613c.zip |
add site and .gitignore
Diffstat (limited to 'docs/assets/xml')
-rw-r--r-- | docs/assets/xml/atom.xsl | 28 | ||||
-rw-r--r-- | docs/assets/xml/rss.xsl | 28 |
2 files changed, 56 insertions, 0 deletions
diff --git a/docs/assets/xml/atom.xsl b/docs/assets/xml/atom.xsl new file mode 100644 index 0000000..7b18344 --- /dev/null +++ b/docs/assets/xml/atom.xsl @@ -0,0 +1,28 @@ +<?xml version="1.0" encoding="UTF-8"?> +<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" 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="feed/title"/> (Atom feed)</title> +<style><![CDATA[html{margin:0;padding:0;}body{color:hsl(180,1%,31%);font-family:Helvetica,Arial,sans-serif;font-size:17px;line-height:1.4;margin:5%;max-width:35rem;padding:0;}input{min-width:20rem;margin-left:.2rem;padding-left:.2rem;padding-right:.2rem;}ol{list-style-type:disc;padding-left:1rem;}h2{font-size:22px;font-weight:inherit;}]]></style> +</head> +<body> +<h1><xsl:value-of select="feed/title"/> (Atom feed)</h1> +<p>This is an Atom 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. New to feeds? <a href="https://duckduckgo.com/?q=how+to+get+started+with+rss+feeds" title="Search on the web to learn more">Learn more</a>.</p> +<p> +<label for="address">Atom feed 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="feed/link[@rel='self']/@href"/></xsl:attribute></input> +</p> +<p>Preview of the feed’s current headlines:</p> +<ol> +<xsl:for-each select="feed/entry"> +<li><h2><a><xsl:attribute name="href"><xsl:value-of select="link[@rel='alternate']/@href"/></xsl:attribute><xsl:value-of select="title"/></a></h2></li> +</xsl:for-each> +</ol> +</body> +</html> +</xsl:template> +</xsl:stylesheet> diff --git a/docs/assets/xml/rss.xsl b/docs/assets/xml/rss.xsl new file mode 100644 index 0000000..f34b3b1 --- /dev/null +++ b/docs/assets/xml/rss.xsl @@ -0,0 +1,28 @@ +<?xml version="1.0" encoding="UTF-8"?> +<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> +<style><![CDATA[html{margin:0;padding:0;}body{color:hsl(180,1%,31%);font-family:Helvetica,Arial,sans-serif;font-size:17px;line-height:1.4;margin:5%;max-width:35rem;padding:0;}input{min-width:20rem;margin-left:.2rem;padding-left:.2rem;padding-right:.2rem;}ol{list-style-type:disc;padding-left:1rem;}h2{font-size:22px;font-weight:inherit;}]]></style> +</head> +<body> +<h1><xsl:value-of select="rss/channel/title"/> (RSS)</h1> +<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. New to feeds? <a href="https://duckduckgo.com/?q=how+to+get+started+with+rss+feeds" title="Search on the web to learn more">Learn more</a>.</p> +<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> +<p>Preview of the feed’s current headlines:</p> +<ol> +<xsl:for-each select="rss/channel/item"> +<li><h2><a><xsl:attribute name="href"><xsl:value-of select="link"/></xsl:attribute><xsl:value-of select="title"/></a></h2></li> +</xsl:for-each> +</ol> +</body> +</html> +</xsl:template> +</xsl:stylesheet> |