summary refs log tree commit diff
path: root/sitemap.xsl
blob: 4485c3b90868ca2b2b8e9a4aea531c1c3601f73d (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>