1. <?xml version="1.0"?> 
2. <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
3. <xsl:output method="xml" doctype-public="-//WAPFORUM//DTD WML 1.1//EN"
4. media-type="text/vnd.wap.wml"
5. doctype-system="http://www.wapforum.org/DTD/wml_1.1.xml"
6. encoding="ISO-8859-1"/>
7. <xsl:template match="/">
8. <wml>
9. <card>
10. <p><b>RECENT POSTINGS</b></p>

11. <xsl:for-each select="ROWSET/ROW">
12. <p><anchor><go>
13. <xsl:attribute name="href">#card<xsl:number/>
14. </xsl:attribute>
15. </go>
16. <xsl:value-of select="SHORT_TITLE"/></anchor></p>
17. </xsl:for-each>
18. </card>

19. <xsl:for-each select="ROWSET/ROW">
20. <card>

21. <xsl:attribute name="id">
22. card<xsl:number/>
23. </xsl:attribute>

24. <p><b><xsl:value-of select="TITLE"/></b></p>
25. <p><xsl:value-of select="LOCATION"/></p>
26. <p><xsl:value-of select="SKILLS"/></p>
27. </card>
28. </xsl:for-each>
29. 
30. </wml>
31. </xsl:template>
32. <