summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormayx <mayx@outlook.com>2025-04-28 08:21:39 +0200
committermayx <mayx@outlook.com>2025-04-28 08:21:39 +0200
commita5ace5b4492b8eaa9e45330e34b7dfd63c81ceec (patch)
tree3536a9c369a8e2da58fd15832fa881a736971102
parent29c6d57faa42212febb76c612d4d193a10f9d8bf (diff)
Update 2 files
- /feed.xslt.xml - /rss.xml
-rw-r--r--feed.xslt.xml4
-rw-r--r--rss.xml6
2 files changed, 6 insertions, 4 deletions
diff --git a/feed.xslt.xml b/feed.xslt.xml
index db7e02e..3c05f87 100644
--- a/feed.xslt.xml
+++ b/feed.xslt.xml
@@ -58,7 +58,7 @@ https://nicolas-hoizey.com/feeds/all.xml
Web Feed Preview
</h1>
<h2><xsl:value-of select="atom:feed/atom:title"/><xsl:value-of select="/rss/channel/title"/></h2>
- <p><xsl:value-of select="atom:feed/atom:description"/><xsl:value-of select="/rss/channel/description"/></p>
+ <p><xsl:value-of select="atom:feed/atom:subtitle"/><xsl:value-of select="/rss/channel/description"/></p>
<p>This preview only shows titles and summaries, but the actual feed(Atom) contains the full content.</p>
<a href="/">
Visit Website &#x2192;
@@ -101,7 +101,7 @@ https://nicolas-hoizey.com/feeds/all.xml
</a>
</h3>
<small class="gray">
- Published at <xsl:value-of select="pubDate" />
+ Published: <xsl:value-of select="pubDate" />
</small>
<p><xsl:value-of select="description"/></p>
</div>
diff --git a/rss.xml b/rss.xml
index 84815bf..bd26cb6 100644
--- a/rss.xml
+++ b/rss.xml
@@ -2,13 +2,15 @@
---
<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xml" href="/feed.xslt.xml"?>
-<rss version="2.0">
+<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>{{ site.title | xml_escape }}</title>
<description>{% if site.description %}{{ site.description | xml_escape }}{% endif %}</description>
- <link>"{{ "/" | absolute_url }}"</link>
+ <link>{{ "/" | absolute_url }}</link>
<lastBuildDate>{{ site.time | date_to_rfc822 }}</lastBuildDate>
<language>{{ site.lang | default: "zh-CN" }}</language>
+ <atom:link href="{{ "/rss.xml" | absolute_url }}" rel="self" type="application/rss+xml" />
+ <atom:link href="{{ site.feed.path | absolute_url }}" rel="alternate" type="application/atom+xml" />
{% for post in site.posts limit:10 %}
<item>
<title>{{ post.title | xml_escape }}</title>