mirror of
https://github.com/praktimarc/kst4contest.git
synced 2026-07-13 16:16:44 +02:00
Add RSS feed for news
This commit is contained in:
@@ -18,6 +18,8 @@
|
||||
<meta name="twitter:description" content="{{ description or 'Contest-optimized ON4KST chat client for VHF, UHF and SHF ham radio contests.' }}">
|
||||
|
||||
<link rel="stylesheet" href="/assets/css/main.css?v={{ build.version }}">
|
||||
<link rel="alternate" type="application/rss+xml" title="KST4Contest News" href="/feed.xml">
|
||||
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
@@ -0,0 +1,23 @@
|
||||
---
|
||||
permalink: /feed.xml
|
||||
eleventyExcludeFromCollections: true
|
||||
---
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<rss version="2.0">
|
||||
<channel>
|
||||
<title>KST4Contest News</title>
|
||||
<link>https://kst4contest.hamradioonline.de/</link>
|
||||
<description>News and release updates for KST4Contest.</description>
|
||||
<language>en</language>
|
||||
|
||||
{% for post in collections.news | reverse %}
|
||||
<item>
|
||||
<title>{{ post.data.title }}</title>
|
||||
<link>https://kst4contest.hamradioonline.de{{ post.url }}</link>
|
||||
<guid>https://kst4contest.hamradioonline.de{{ post.url }}</guid>
|
||||
<pubDate>{{ post.date | dateToRfc822 }}</pubDate>
|
||||
<description>{{ post.data.summary }}</description>
|
||||
</item>
|
||||
{% endfor %}
|
||||
</channel>
|
||||
</rss>
|
||||
Reference in New Issue
Block a user