antville/code/Global/Global.skin
Tobi Schäfer 84492cc922 * Modified HopObject.link_macro() to automatically capitalize the default link text
* Added global i18n.js file containing markgettext() calls
 * Wrapped messages with gettext macros wherever found missing
 * Moved contents of remaining diff skin files to Skin.skin
 * Removed Layouts prototype
 * Removed obsolete files
2008-03-27 15:10:31 +00:00

43 lines
1.4 KiB
Text

<% #pager %>
<div class="pageNav">
<div class="pageNavSummary">
<% gettext "displaying {0} (of {1})" <% param.display %> <% param.total %> %>
</div>
<div class="pageNavBar"><% param.pager %></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>