Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
<xsl:template match="text">
<td>
<xsl:attribute name="align">
<xsl:value-of select="../align"/>
</xsl:attribute>
<xsl:value-of select="."/>
</td>
</xsl:template>
<xsl:template match="item">
<td>
<xsl:attribute name="align">
<xsl:value-of select="align"/>
</xsl:attribute>
<xsl:value-of select="text"/>
</td>B
</xsl:template>