7fe7752276
PR: www/89386 Submitted by: Rudolf Cejka <cejkar@fit.vutbr.cz>
68 lines
1.8 KiB
XML
68 lines
1.8 KiB
XML
<?xml version="1.0" encoding="ISO-8859-1" ?>
|
|
|
|
<!-- $FreeBSD: www/en/news/press.xsl,v 1.11 2005/10/04 06:22:24 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="../includes.xsl"/>
|
|
<xsl:import href="includes.xsl"/>
|
|
<xsl:variable name="section" select="'about'"/>
|
|
|
|
<xsl:variable name="base" select="'..'"/>
|
|
<xsl:variable name="title" select="'FreeBSD in the Press'"/>
|
|
<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="iso-8859-1"/>
|
|
|
|
<xsl:template match="press">
|
|
<html>
|
|
|
|
<xsl:copy-of select="$header1"/>
|
|
|
|
<body xsl:use-attribute-sets="att.body">
|
|
|
|
<div id="CONTAINERWRAP">
|
|
<div id="CONTAINER">
|
|
|
|
<xsl:copy-of select="$header2"/>
|
|
|
|
<div id="CONTENT">
|
|
|
|
<xsl:copy-of select="$sidenav"/>
|
|
|
|
<div id="CONTENTWRAP">
|
|
|
|
<xsl:copy-of select="$header3"/>
|
|
|
|
<p>If you know of any news stories featuring FreeBSD that we have not
|
|
listed here, please send details to
|
|
<a href="mailto:www@FreeBSD.org">www@FreeBSD.org</a> so that we can
|
|
include them.</p>
|
|
|
|
<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:copy-of select="$newshome"/>
|
|
|
|
</div> <!-- CONTENTWRAP -->
|
|
<br class="clearboth" />
|
|
|
|
</div> <!-- CONTENT -->
|
|
|
|
<xsl:copy-of select="$footer"/>
|
|
|
|
</div> <!-- CONTAINER -->
|
|
</div> <!-- CONTAINERWRAP -->
|
|
|
|
</body>
|
|
</html>
|
|
</xsl:template>
|
|
</xsl:stylesheet>
|