blog: Fix broken self URL and improve title

* Fix 404 from https://www.sitespeed.io/feed/blog.xml to `https://www.sitespeed.io/feed.xml` which can confuse feed readers by updating their link but then losing the subscription to an error.
* Shorten title and start with "Sitespeed.io" so that it sorts well alongside many other blogs in a feed reader under the default suggested name.
This commit is contained in:
Timo Tijhof 2025-08-18 19:18:09 +01:00 committed by GitHub
parent 7f2d7480e2
commit 17bcd0966c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -3,10 +3,10 @@
<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>The sitespeed.io blog</title>
<title>Sitespeed.io Blog</title>
<description>The latest news from the sitespeed.io world.</description>
<link>https://www.sitespeed.io</link>
<atom:link href="{{ site.url }}/feed.xml" rel="self" type="application/rss+xml" />
<atom:link href="{{ site.url }}/feed/blog.xml" rel="self" type="application/rss+xml" />
{% for post in site.posts limit:10 %}
<item>
<title>{{ post.title | xml_escape }}</title>