blog/sitemap.xsl
mayx 4de724f972 Update 4 files
- /_layouts/xslt_container.html
- /_layouts/xslt.html
- /sitemap.xsl
- /feed.xslt.xml
2025-06-29 08:31:33 +00:00

19 lines
415 B
XML

---
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>