aboutsummaryrefslogtreecommitdiff
path: root/share/sgml/templates.press.xsl
diff options
context:
space:
mode:
Diffstat (limited to 'share/sgml/templates.press.xsl')
-rw-r--r--share/sgml/templates.press.xsl83
1 files changed, 83 insertions, 0 deletions
diff --git a/share/sgml/templates.press.xsl b/share/sgml/templates.press.xsl
new file mode 100644
index 0000000000..0fe67c970f
--- /dev/null
+++ b/share/sgml/templates.press.xsl
@@ -0,0 +1,83 @@
+<?xml version="1.0" encoding="ISO-8859-1" ?>
+<!DOCTYPE xsl:stylesheet PUBLIC "-//FreeBSD//DTD FreeBSD XSLT 1.0 DTD//EN"
+ "http://www.FreeBSD.org/XML/www/share/sgml/xslt10-freebsd.dtd" [
+<!ENTITY title "FreeBSD in the Press">
+<!ENTITY email "freebsd-www">
+<!ENTITY rsslink "press-rss.xml">
+<!ENTITY rsstitle "&title;">
+<!ENTITY % navinclude.about "INCLUDE">
+<!ENTITY % header.rss "INCLUDE">
+]>
+
+<!-- $FreeBSD: www/share/sgml/templates.press.xsl,v 1.4 2008/01/16 08:25:02 murray Exp $ -->
+
+<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"
+ xmlns:cvs="http://www.FreeBSD.org/XML/CVS">
+
+ <xsl:import href="http://www.FreeBSD.org/XML/www/lang/share/sgml/libcommon.xsl"/>
+
+ <xsl:variable name="date">
+ <xsl:value-of select="//cvs:keyword[@name='freebsd']"/>
+ </xsl:variable>
+
+ <xsl:param name="news.press.xml-master" select="'none'" />
+ <xsl:param name="news.press.xml" select="'none'" />
+
+ <xsl:output type="html" encoding="&xml.encoding;"/>
+
+ <xsl:template match="press">
+ <html>
+ &header1;
+ <body>
+
+ <div id="CONTAINERWRAP">
+ <div id="CONTAINER">
+
+ &header2;
+
+ <div id="CONTENT">
+ <div id="SIDEWRAP">
+ &nav;
+ <div id="FEEDLINKS">
+ <ul>
+ <li>
+ <a href="&rsslink;" title="FreeBSD in the Press RSS 2.0 Feed">
+ RSS 2.0 Feed
+ </a>
+ </li>
+ </ul>
+ </div> <!-- FEEDLINKS -->
+ </div> <!-- SIDEWRAP -->
+
+ <div id="CONTENTWRAP">
+
+ &header3;
+
+ <xsl:call-template name="html-news-list-press-preface" />
+
+ <xsl:call-template name="html-news-list-press">
+ <xsl:with-param name="news.press.xml-master" select="$news.press.xml-master" />
+ <xsl:with-param name="news.press.xml" select="$news.press.xml" />
+ </xsl:call-template>
+
+ <xsl:call-template name="html-press-make-olditems-list" />
+
+ <xsl:call-template name="html-news-list-newsflash-homelink" />
+
+ </div> <!-- CONTENTWRAP -->
+ <br class="clearboth" />
+
+ </div> <!-- CONTENT -->
+
+ <div id="FOOTER">
+ &copyright;<br />
+ &date;
+ </div> <!-- FOOTER -->
+
+ </div> <!-- CONTAINER -->
+ </div> <!-- CONTAINERWRAP -->
+
+ </body>
+ </html>
+ </xsl:template>
+</xsl:stylesheet>