Update 2 files

- /feed.json
- /sitemap.xsl
This commit is contained in:
mayx
2025-08-10 17:15:55 +00:00
parent 3c324af39e
commit 86f82d5aac
2 changed files with 9 additions and 11 deletions

View File

@@ -4,16 +4,14 @@ title: Sitemap
---
<h1>Sitemap</h1>
<p>以下是本站的所有链接:</p>
<p>以下是本站的所有链接(总共<xsl:value-of select="count(sm:urlset/sm:url)" />条)</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 select="sm:urlset/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>
</ul>