-
Notifications
You must be signed in to change notification settings - Fork 0
/
sitemap.xsl
26 lines (26 loc) · 903 Bytes
/
sitemap.xsl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="3.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:sitemap="http://www.sitemaps.org/schemas/sitemap/0.9">
<xsl:output method="html" version="1.0" encoding="UTF-8" indent="yes"/>
<xsl:template match="/">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en">
<body>
<h1>Sitemap</h1>
<ol>
<xsl:for-each select="/sitemap:urlset/sitemap:url">
<li>
<a>
<xsl:attribute name="href">
<xsl:value-of select="sitemap:loc"/>
</xsl:attribute>
<xsl:value-of select="sitemap:loc"/>
</a>
Last updated:
<xsl:value-of select="substring(sitemap:lastmod, 0, 11)" />
</li>
</xsl:for-each>
</ol>
</body>
</html>
</xsl:template>
</xsl:stylesheet>