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:stylesheet version="1.0" xmlns:xsl="[URL unfurl="true"]http://www.w3.org/1999/XSL/Transform"[/URL] xmlns="[URL unfurl="true"]http://www.w3.org/TR/xhtml1/strict">[/URL]
<xsl:template match="/">
<xsl:call-template name="ParseRoot">
<xsl:with-param name="counter" select="1" />
</xsl:call-template>
</xsl:template>
<xsl:template name="ParseRoot">
<xsl:param name="counter" />
<xsl:apply-templates/>
<xsl:if test="$counter != 6">
<xsl:call-template name="ParseRoot">
<xsl:with-param name="counter" select="$counter+1" />
</xsl:call-template>
</xsl:if>
</xsl:template>
<xsl:template match="whatever"/>
</xsl:stylesheet>