* Removed obsolete navigation skins * Moved page navigation skins into Global.skin * Removed remaining obsolete RSS skin * Moved admin navigation into subskin and added it via overwritten skin_macro in Admin prototype * Removed obsolete sysmgrnavigation.skin from Root * Renamed style.skin to stylesheet.skin (this could be hazardous regarding b/w compatibility...?) * Modified order of featured collection in Stories prototype * Re-added DB column and property for last visit date of a user (now simply called "visited")
43 lines
1.4 KiB
Text
43 lines
1.4 KiB
Text
<% #pager %>
|
|
<div class="pageNav">
|
|
<div class="pageNavSummary">
|
|
displaying <% param.display %><% param.total prefix=" (of " suffix=")" %>
|
|
</div>
|
|
<div class="pageNavBar"><% param.pagenavigation %></div>
|
|
</div>
|
|
|
|
<% #pagerItem %>
|
|
<span class="<% param.class %>"><% param.text %></span>
|
|
|
|
<% #xslDeclaration %>
|
|
<?xml-stylesheet title="Xml Stylesheet" type="text/xsl"
|
|
href="<% site.href rss.xsl %>"?>
|
|
<!--
|
|
................................................................................
|
|
................................................................................
|
|
................................................................................
|
|
................................................................................
|
|
-->
|
|
|
|
<% #xslStylesheet %>
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
|
|
xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd"
|
|
xmlns:fn="http://www.w3.org/2005/02/xpath-functions">
|
|
<xsl:output method="html" encoding="UTF-8" indent="yes"
|
|
doctype-public="-//W3C//DTD XHTML 1.1//EN"
|
|
doctype-system="http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"/>
|
|
<xsl:template match="/">
|
|
|
|
<html>
|
|
<head>
|
|
<title><xsl:value-of select="/rss/channel/title"/></title>
|
|
</head>
|
|
<body>
|
|
<h1><xsl:value-of select="/rss/channel/title"/></h1>
|
|
<strong><xsl:value-of select="/rss/channel/description"/></strong>
|
|
</body>
|
|
</html>
|
|
|
|
</xsl:template>
|
|
</xsl:stylesheet>
|