1281N/A<?xml version="1.0" encoding="UTF-8"?>
1281N/A<xsl:stylesheet version="1.1" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
1281N/A <xsl:output method="html" />
1281N/A <xsl:variable name="title" select="/rss/channel/title"/>
1281N/A <xsl:template match="/">
1281N/A <html>
1281N/A <head>
1281N/A <title><xsl:value-of select="$title"/></title>
1281N/A <link rel="icon" href="img/icon.png" type="image/png"/>
1281N/A <link rel="stylesheet" type="text/css" href="style.css"/>
1281N/A </head>
1281N/A <xsl:apply-templates select="rss/channel"/>
1281N/A </html>
1281N/A </xsl:template>
1281N/A <xsl:template match="channel">
1281N/A <body>
1281N/A <div id="page">
1281N/A <div id="header"> <!-- CONFIG: Header -->
1281N/A <div id="MastheadLogo"> <h1> OpenGrok </h1> </div>
1281N/A <div id="pagetitle"><b id="filename"><xsl:value-of select="title"/></b><br/>
1281N/A <xsl:value-of select="description"/>
1281N/A </div>
1281N/A </div>
1281N/A <div id="Masthead">
1281N/A <tt>RSS Feed <a href="{link}" class="item"><xsl:value-of select="link"/></a></tt>
1281N/A </div>
1281N/A <div id="results">
1281N/A <div class="itembox">
1281N/A <div class="paditembox">
1281N/A <xsl:apply-templates select="item"/>
1281N/A </div>
1281N/A </div>
1281N/A </div>
1281N/A<!-- CONFIG: Footer -->
1281N/A<div id="Footer">
1281N/A<p class="Center">
1281N/A</p>
1281N/A</div>
1281N/A</div>
1281N/A </body>
1281N/A </xsl:template>
1281N/A
1281N/A <xsl:template match="item">
1281N/A <div id="item">
1281N/A <ul>
1281N/A <li><span class="c"><xsl:value-of select="pubDate"/> - </span>
1281N/A <xsl:value-of select="title"/>
1281N/A <br/>
1281N/A <pre>
1281N/A <xsl:value-of select="description" />
1281N/A </pre>
1281N/A </li>
1281N/A </ul>
1281N/A </div>
1281N/A </xsl:template>
1281N/A</xsl:stylesheet>