blog/_layouts/xslt.html
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

17 lines
534 B
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
layout: default
---
<xsl:choose>
<xsl:when test="xsl:stylesheet">
这是本站XML文件例如订阅源或者<a href="/sitemap.xml">Sitemap</a>)的样式文件,你可以通过以下链接订阅该博客:<br />
<ul>
<li><a href="{{ site.feed.path | relative_url }}">Atom</a></li>
<li><a href="/rss.xml">RSS</a></li>
<li><a href="/feed.json">JSON Feed</a></li>
</ul>
</xsl:when>
<xsl:otherwise>
{{ content }}
</xsl:otherwise>
</xsl:choose>