n/oldblog
Archived
1
0
Fork 0
This repository has been archived on 2024-02-13. You can view files and clone it, but cannot push or open issues or pull requests.
oldblog/css/rss.xsl
2023-04-30 21:50:11 +02:00

117 lines
4.2 KiB
XML
Raw Blame History

<?xml version="1.0" encoding="iso-8859-1"?>
<Q:stylesheet version="1.0"
xmlns:Q="http://www.w3.org/1999/XSL/Transform"
xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
xmlns:rss="http://purl.org/rss/1.0/"
xmlns="http://www.w3.org/1999/xhtml">
<Q:output method="html" />
<Q:template match="/">
<!--
This stylesheet is for rendering RSS as HTML.
By sburke@cpan.org
-->
<html>
<head>
<link rel='alternate stylesheet' href='/css/blue.css' type='text/css' media='screen' title='blue' />
<link rel='alternate stylesheet' href='/css/flashy.css' type='text/css' media='screen' title='flashy' />
<link rel='alternate stylesheet' href='/css/outline.css' type='text/css' media='screen' title='outline' />
<link rel='alternate stylesheet' href='/css/minimal.css' type='text/css' media='screen' title='minimal' />
<link rel='alternate stylesheet' href='/css/guadeloupe.css' type='text/css' media='screen' title='guadeloupe' />
<link rel='alternate stylesheet' href='/css/linuxfr.css' type='text/css' media='screen' title='linuxfr' />
<link rel='stylesheet' href='/css/default.css' type='text/css' media='screen' title='default' />
<link rel='stylesheet' href='/css/pda.css' type='text/css' media='handheld' title='' />
<link rel='stylesheet' href='/css/print.css' type='text/css' media='print' title='' />
<Q:for-each select="/rss/channel/title">
<title>RSS: <Q:value-of select="."/></title>
</Q:for-each>
<link rel='alternate' type='application/rss+xml' title='Fil RSS' href='http://tourmentine.com/backends/xml/tourmentine.rss' />
<link rel='alternate' type='application/atom+xml' title='Fil Atom' href='http://tourmentine.com/backends/atom/tourmentine.xml' />
<link rel='alternate' type='application/opml+xml' title='Fil OPML' href='http://tourmentine.com/backends/opml/tourmentine.opml' />
<link rel='author' href='http://tourmentine.com/apropos.html' />
<link rel='copyright' href='http://tourmentine.com/merci.html' />
<link rel='home' title='HomePage' href='http://tourmentine.com' />
<link rel='top' title='HomePage' href='http://tourmentine.com' />
<link rel='up' title='Up' href='../' />
<link rel='search' title='google' href='http://www.google.fr' />
<meta http-equiv='content-language' content='fr' />
<meta name='author' content='nicosoft' />
<meta name='generator' content='WebLoom beta' />
</head>
<body>
<p class='back'><a href="./" accesskey="U" title="Retour <20> la liste des backends">[Retour]</a></p>
<div style="text-align:center"><h1>Les nouvelles anciennes de la <a href="{/rss/channel/link}">
<Q:value-of select="/rss/channel/title"/>
</a></h1></div>
<Q:variable name="C" select="count(/rss/channel/item)" />
<p style="text-align:center">
<Q:choose>
<Q:when test="$C = 0" >Aucune </Q:when>
<Q:when test="$C = 1" >(enfin la seule)</Q:when>
<Q:otherwise>(Les <Q:value-of select="$C" /> derni<6E>res)</Q:otherwise>
</Q:choose>
</p>
<!--<div class='Items'>-->
<Q:if test='$C = 0'> <dt>(Empty)</dt> </Q:if>
<Q:for-each select="/rss/channel/item">
<div class="affnews">
<table width='100%' class='bordure'>
<tr>
<td align='center' class='centerhead'>
<table width='100%' cellpadding='0' cellspacing='0' border='0'>
<tr>
<td class="head_1"></td>
<td class="head_2" nowrap="nowrap"><a href="{link}"><Q:value-of select="title"/></a></td>
<td class="head_3"></td>
<td class="head_4"></td>
</tr>
</table>
</td>
</tr>
<tr>
<td valign='middle' class='magicboxborder'>
<table border='0' width='90%' class='centerbody' align="center">
<tr>
<Q:if test="description" >
<td class="centernews"><Q:value-of disable-output-escaping="yes" select="description" /></td>
<!-- Alas, many implementations can't, and never will, support disable-output-escaping -->
</Q:if>
</tr></table>
</td>
</tr>
<tr><td>
<div class="foot">
<div class="foot_1"></div>
<div class="foot_2">Post<EFBFBD>: <Q:value-of select="pubDate"/></div>
<div class="foot_3"></div>
</div>
</td></tr></table>
</div>
<br />
</Q:for-each>
<!--</div>-->
<div align="right"><h6>
<Q:for-each select="/rss/channel/lastBuildDate">
(MAJ <Q:value-of select="."/></Q:for-each>)
</h6></div>
<p class='end'><a href="./" accesskey="U" title="Retour <20> la liste des backends">[Retour]</a></p>
<!--</div>-->
</body>
</html>
</Q:template>
</Q:stylesheet>