2012-09-22 22:09:08 +02:00
|
|
|
<?xml version="1.0" encoding="iso-8859-1" ?>
|
2006-08-19 23:20:54 +02:00
|
|
|
<!DOCTYPE xsl:stylesheet PUBLIC "-//FreeBSD//DTD FreeBSD XSLT 1.0 DTD//EN"
|
2013-11-13 07:10:37 +01:00
|
|
|
"http://www.FreeBSD.org/XML/share/xml/xslt10-freebsd.dtd" [
|
2006-08-19 23:20:54 +02:00
|
|
|
<!ENTITY title "FreeBSD in the Press">
|
2008-01-16 09:25:02 +01:00
|
|
|
<!ENTITY rsslink "press-rss.xml">
|
|
|
|
<!ENTITY rsstitle "&title;">
|
2006-08-19 23:20:54 +02:00
|
|
|
]>
|
2001-08-10 12:31:44 +02:00
|
|
|
|
2012-05-17 21:12:14 +02:00
|
|
|
<!-- $FreeBSD$ -->
|
2001-08-10 12:31:44 +02:00
|
|
|
|
2012-08-12 22:35:40 +02:00
|
|
|
<xsl:stylesheet version="1.0"
|
|
|
|
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
|
|
|
|
xmlns="http://www.w3.org/1999/xhtml">
|
2001-08-10 12:31:44 +02:00
|
|
|
|
2013-11-13 07:10:37 +01:00
|
|
|
<xsl:import href="http://www.FreeBSD.org/XML/lang/share/xml/libcommon.xsl"/>
|
|
|
|
<xsl:import href="http://www.FreeBSD.org/XML/share/xml/xhtml.xsl"/>
|
2004-12-30 18:53:44 +01:00
|
|
|
|
|
|
|
<xsl:param name="news.press.xml-master" select="'none'" />
|
|
|
|
<xsl:param name="news.press.xml" select="'none'" />
|
2006-08-19 23:20:54 +02:00
|
|
|
|
2012-08-12 22:35:40 +02:00
|
|
|
<xsl:variable name="title">&title;</xsl:variable>
|
|
|
|
|
|
|
|
<xsl:variable name="rsstitle">&rsstitle;</xsl:variable>
|
|
|
|
|
|
|
|
<xsl:variable name="rsslink">&rsslink;</xsl:variable>
|
|
|
|
|
2012-07-16 11:04:26 +02:00
|
|
|
<xsl:template name="process.content">
|
2012-08-19 01:43:35 +02:00
|
|
|
<div id="sidewrap">
|
2012-08-12 22:35:40 +02:00
|
|
|
&nav.about;
|
2012-08-19 01:43:35 +02:00
|
|
|
<div id="feedlinks">
|
2008-01-16 09:25:02 +01:00
|
|
|
<ul>
|
|
|
|
<li>
|
2008-01-18 04:06:05 +01:00
|
|
|
<a href="&rsslink;" title="FreeBSD in the Press RSS 2.0 Feed">
|
2008-01-16 09:25:02 +01:00
|
|
|
RSS 2.0 Feed
|
|
|
|
</a>
|
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
</div> <!-- FEEDLINKS -->
|
2006-08-19 23:20:54 +02:00
|
|
|
</div> <!-- SIDEWRAP -->
|
2005-10-04 08:22:24 +02:00
|
|
|
|
2012-08-19 01:43:35 +02:00
|
|
|
<div id="contentwrap">
|
2005-10-04 08:22:24 +02:00
|
|
|
|
2012-08-12 22:35:40 +02:00
|
|
|
<h1>&title;</h1>
|
2006-08-19 23:20:54 +02:00
|
|
|
|
2012-07-16 11:04:26 +02:00
|
|
|
<xsl:for-each select="/press">
|
2006-08-19 23:20:54 +02:00
|
|
|
<xsl:call-template name="html-news-list-press-preface" />
|
2001-08-10 12:31:44 +02:00
|
|
|
|
2004-12-30 18:53:44 +01:00
|
|
|
<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>
|
2004-04-07 13:40:48 +02:00
|
|
|
|
2008-01-12 00:36:14 +01:00
|
|
|
<xsl:call-template name="html-press-make-olditems-list" />
|
|
|
|
|
2006-08-19 23:20:54 +02:00
|
|
|
<xsl:call-template name="html-news-list-newsflash-homelink" />
|
2012-07-16 11:04:26 +02:00
|
|
|
</xsl:for-each>
|
2005-10-04 08:22:24 +02:00
|
|
|
|
2005-11-30 20:59:32 +01:00
|
|
|
</div> <!-- CONTENTWRAP -->
|
2005-10-04 08:22:24 +02:00
|
|
|
<br class="clearboth" />
|
2001-08-10 12:31:44 +02:00
|
|
|
</xsl:template>
|
|
|
|
</xsl:stylesheet>
|