~bitfehler/public-inbox

blog: Change rss link type to application/rss+xml v1 PROPOSED

Sebastian Zaha: 1
 Change rss link type to application/rss+xml

 1 files changed, 1 insertions(+), 1 deletions(-)
Export patchset (mbox)
How do I use this?

Copy & paste the following snippet into your terminal to import this patchset into git:

curl -s https://lists.sr.ht/~bitfehler/public-inbox/patches/33621/mbox | git am -3
Learn more about email & git

[PATCH blog] Change rss link type to application/rss+xml Export this patch

I think many rss readers that parse the index html searching for a rss
link are checking for the standard `application/rss+xml` or
`application/atom+xml`.
---
 templates/page_header.html | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/templates/page_header.html b/templates/page_header.html
index 291b936..8f8989e 100644
--- a/templates/page_header.html
+++ b/templates/page_header.html
@@ -10,7 +10,7 @@
  <link rel="icon" href="/favicon-16x16.png" sizes="16x16" type="image/png">
  <link rel="icon" href="/favicon-32x32.png" sizes="32x32" type="image/png">
  <link rel="icon" href="/favicon.svg" type="image/svg+xml">
  <link rel="alternate" type="application/xml" href="/index.xml">
  <link rel="alternate" type="application/rss+xml" href="/index.xml">
 </head>
 
 <body>
-- 
2.37.0
Hey,