Update 4 files

- /_layouts/xslt_container.html
- /_layouts/xslt.html
- /sitemap.xsl
- /feed.xslt.xml
This commit is contained in:
mayx
2025-06-29 08:31:33 +00:00
parent 0afcae7cd8
commit 4de724f972
4 changed files with 47 additions and 50 deletions

View File

@@ -6,5 +6,14 @@ title: Sitemap
<h1>Sitemap</h1>
<p>以下是本站的所有链接:</p>
<ul>
<xsl:apply-templates select="sm:urlset" />
<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>