summary refs log tree commit diff
path: root/sitemap.xsl
blob: 6cf398ef630dcbbb13264d879466fe7478b5579c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
---
layout: xslt
title: Sitemap
---

<h1>Sitemap</h1>
<p>以下是本站的所有链接:</p>
<ul>
  <xsl:for-each select="sm:urlset">
    <xsl:for-each select="sm:url">
        <li>
            <a>
                <xsl:attribute name="href"><xsl:value-of select="sm:loc" /></xsl:attribute>
                <xsl:value-of select="sm:loc" />
            </a>
        </li>
    </xsl:for-each>
  </xsl:for-each>
</ul>