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[string-length(@Title)>0]">
<li>
<xsl:value-of select="@Title"/>
</li>
</xsl:template>
</xsl:stylesheet>