diff 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 diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/myrss/step2.xsl	Sat Sep 11 03:35:23 2010 -0700
     1.3 @@ -0,0 +1,14 @@
     1.4 +<?xml version="1.0" encoding="ISO-8859-1"?>
     1.5 +<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:pba="http://www.pauloang.com/">
     1.6 +<xsl:output method="html"/>
     1.7 +
     1.8 +<xsl:template match="pba:site">
     1.9 +<H2><A HREF="{pba:link}"><xsl:value-of select="pba:title"/></A></H2>
    1.10 +<P>
    1.11 +<xsl:for-each select="pba:headline">
    1.12 +	<A HREF="{pba:link}"><xsl:value-of select="pba:title"/></A> -
    1.13 +</xsl:for-each>
    1.14 +</P>
    1.15 +</xsl:template>
    1.16 +
    1.17 +</xsl:stylesheet>