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:
parent
7f2d7480e2
commit
17bcd0966c
|
|
@ -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>
|
||||
|
|
|
|||
Loading…
Reference in New Issue