diff --git a/handlers/MainHandler.php b/handlers/MainHandler.php
index 2b81a30..7548bd1 100644
--- a/handlers/MainHandler.php
+++ b/handlers/MainHandler.php
@@ -159,8 +159,8 @@ class MainHandler extends request_handler {
$body = $this->skin->render('rss.twig', [
'title' => lang('site_title'),
- 'link' => 'https =>//'.$config['domain'],
- 'rss_link' => 'https =>//'.$config['domain'].'/feed.rss',
+ 'link' => 'https://'.$config['domain'],
+ 'rss_link' => 'https://'.$config['domain'].'/feed.rss',
'items' => $items
]);
diff --git a/skin/rss.twig b/skin/rss.twig
index 4b4e46a..3bcaf37 100644
--- a/skin/rss.twig
+++ b/skin/rss.twig
@@ -7,10 +7,10 @@
{% for item in items %}
-
- {{ title }}
- {{ link }}
- {{ pub_date }}
- {{ description }}
+ {{ item.title }}
+ {{ item.link }}
+ {{ item.pub_date }}
+ {{ item.description }}
{% endfor %}