Something
public text v1 · immutable<?xml version="1.0"?>
<!-- Title.xsl -->
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="html"/>
<xsl:template match="posts">
<html><body>
<h1>Posts</h1>
<xsl:apply-templates/>
</body></html>
</xsl:template>
<xsl:template match="row">
<xsl:if test="./@Title">
<li><xsl:value-of select="./@Title"/></li>
</xsl:if>
</xsl:template>
</xsl:stylesheet>