view myrss/step2.xsl @ 7:4d7f45e51e8e

add step2.xsl; add RDF to step1.xsl
author paulo@twcdns.fastsearch.net
date Sat, 11 Sep 2010 03:35:23 -0700
parents myrss/step1.xsl@2be1a035d725
children fbd8c30c465c
line source
1 <?xml version="1.0" encoding="ISO-8859-1"?>
2 <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:pba="http://www.pauloang.com/">
3 <xsl:output method="html"/>
5 <xsl:template match="pba:site">
6 <H2><A HREF="{pba:link}"><xsl:value-of select="pba:title"/></A></H2>
7 <P>
8 <xsl:for-each select="pba:headline">
9 <A HREF="{pba:link}"><xsl:value-of select="pba:title"/></A> -
10 </xsl:for-each>
11 </P>
12 </xsl:template>
14 </xsl:stylesheet>