aboutsummaryrefslogtreecommitdiff
path: root/static/rss.xsl
blob: 3bfd627b1ed921a1a4b8433d5986c584052b3d47 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<?xml version="1.0" encoding="utf-8"?><!DOCTYPE xsl:stylesheet  [
	<!ENTITY nbsp   "&#160;">
	<!ENTITY copy   "&#169;">
	<!ENTITY reg    "&#174;">
	<!ENTITY trade  "&#8482;">
	<!ENTITY mdash  "&#8212;">
	<!ENTITY ldquo  "&#8220;">
	<!ENTITY rdquo  "&#8221;"> 
	<!ENTITY pound  "&#163;">
	<!ENTITY yen    "&#165;">
	<!ENTITY euro   "&#8364;">

]>
<xsl:stylesheet version="1.0" 
	xmlns:xsl="http://www.w3.org/1999/XSL/Transform" 
	xmlns:atom="http://www.w3.org/2005/Atom">
<xsl:output method="xml" version="1.0" encoding="utf-8" 
	doctype-public="-//W3C//DTD XHTML 1.0 Strict//EN" 
	doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"/>
<xsl:template match="/">
	<xsl:apply-templates select="rss/channel"/>
</xsl:template>

<xsl:template match="rss/channel">

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title><xsl:value-of select="atom:title"/></title>
<link rel="stylesheet" type="text/css" href="/css/rss.css"/>
</head>

<body>
<h1><xsl:apply-templates select="title"/></h1>
<p>This RSS feed provides the latest posts from <xsl:apply-templates select="title"/>.</p>
	
<h2>What is an RSS feed?</h2>
<p>An RSS feed is an XML-based data format that allows publishers to syndicate information. It allows you to stay up to date on topics that interest you&mdash;all in one place&mdash;without visiting 20-30 different web sites to check for new content. All you need to do to get started is to add the URL (web address) for this feed to your RSS reader.</p>
<p>The URL for this RSS feed is: <xsl:apply-templates select="atom:link"/></p>

<xsl:apply-templates select="item"/>

</body>
</html>

</xsl:template>

<xsl:template match="item">
	<h2><a href="{link}"><xsl:apply-templates select="title"/></a></h2>
	<p><xsl:apply-templates select="description"/></p>
	<hr/>
</xsl:template>

<xsl:template match="title">
	<xsl:value-of select="."/>
</xsl:template>

<xsl:template match="description">
	<xsl:value-of select="."/>
</xsl:template>

<xsl:template match="atom:link">
	<a href="{.}"><xsl:value-of select="."/></a>
</xsl:template>

<xsl:template match="link">
	<a href="{.}"><xsl:value-of select="."/></a>
</xsl:template>


</xsl:stylesheet>