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.
<?xml version="1.0" encoding="utf-8" ?>
<?xml-stylesheet type="text/xsl" href="test.xsl"?>
<Test>
<Page>
<Name>Test Page</Name>
[b]<Link>Test.html</Link>[/b]
</Page>
</Test>
<?xml version="1.0" encoding="ISO-8859-1"?>
<xsl:stylesheet version="1.0" xmlns:xsl="[URL unfurl="true"]http://www.w3.org/1999/XSL/Transform">[/URL]
<xsl:template match="/">
<html>
<body>
<center>
<table border="1" width="100%">
<tr align="center">
<th>Links</th>
</tr>
<xsl:for-each select="//Page">
<tr align="center">
<td>[b]<a href="{Link}" target="_blank"><xsl:value-of select="Name"/></a>[/b]</td>
</tr>
</xsl:for-each>
</table>
</center>
</body>
</html>
</xsl:template>
</xsl:stylesheet>
<html>
<body>
<h1>New Page</h1>
[b]<a href="test.xml" target="_blank">Go Back</a>[/b]
</body>
</html>
<xsl:if test="string-length(Website)">
<b>WebSite: </b>
<a>
<xsl:attribute name="href">
<xsl:value-of select="Website"/>
</xsl:attribute>
<xsl:value-of select="Website"/>
</a><BR/>
</xsl:if>
target="_blank"
<xsl:if test="string-length(Website)">
<b>WebSite: </b>
<a href="{Website}" target="_blank">
<xsl:value-of select="Website"/>
</a><BR/>
</xsl:if>
<xsl:if test="string-length(Website)">
<b>WebSite: </b>
<a target="_blank">
<xsl:attribute name="href">
<xsl:value-of select="Website"/>
</xsl:attribute>
<xsl:value-of select="Website"/>
</a><BR/>
</xsl:if>
<xsl:attribute name="href">
<xsl:value-of select="Website"/>
</xsl:attribute>
href="{Website}"
<A>
<xsl:attribute name="href">
<xsl:value-of select="[b]Website[/b]"/>
</xsl:attribute>
<xsl:value-of select="[b]Name[/b]"/>
</A>
<A href="{[b]Website[/b]}">
<xsl:value-of select="[b]Name[/b]"/>
</A>