diff --git a/themes/waterspill-en/static/images/feed-icon-28x28.png b/themes/waterspill-en/static/images/feed-icon-28x28.png
new file mode 100644
index 0000000..d64c669
Binary files /dev/null and b/themes/waterspill-en/static/images/feed-icon-28x28.png differ
diff --git a/themes/waterspill-en/templates/base.html b/themes/waterspill-en/templates/base.html
index 069d610..e818729 100644
--- a/themes/waterspill-en/templates/base.html
+++ b/themes/waterspill-en/templates/base.html
@@ -40,7 +40,7 @@
{% for item in AFTER_MENU %}
+
+
{{ article.locale_date }}
+ {{ article.content }}
+
{% if not SUPPRESS_ITEM_CATEGORIES %}Category: {{ article.category }}{% endif %} | {% if article.tags %} Tags: {% for tag in article.tags %} {{ tag }} {% if not loop.last %} / {% endif %} {% endfor %}
{% endif %}
+ {% endfor %}
+{% endif %}
+{% endblock content %}
+{% block archives %} {% endblock %}
diff --git a/themes/waterspill-en/templates/index.html b/themes/waterspill-en/templates/index.html
index 6d351ec..80de2b2 100644
--- a/themes/waterspill-en/templates/index.html
+++ b/themes/waterspill-en/templates/index.html
@@ -3,7 +3,7 @@
{% block content %}
{% if articles %}
{% for article in articles %}
- {% if loop.index <= 1 %}
+ {% if loop.index <= 3 %}
{{ article.locale_date }}
diff --git a/themes/waterspill-en/templates/page.html b/themes/waterspill-en/templates/page.html
index 9812e31..0f8f781 100644
--- a/themes/waterspill-en/templates/page.html
+++ b/themes/waterspill-en/templates/page.html
@@ -13,3 +13,4 @@
{% endblock %}
+{% block archives %} {% endblock %}
diff --git a/themes/waterspill-en/templates/tag.html b/themes/waterspill-en/templates/tag.html
index e33255d..7165ac6 100644
--- a/themes/waterspill-en/templates/tag.html
+++ b/themes/waterspill-en/templates/tag.html
@@ -1,4 +1,14 @@
{% extends "index.html" %}
{% block title %}{{ SITENAME }} - {{ tag }}{% endblock %}
-{% block archives %}{% endblock %}
+{% block content %}
+ {% if articles %}
+ {% for article in articles %}
+
+
+
{{ article.locale_date }}
+ {{ article.content }}
+
{% if not SUPPRESS_ITEM_CATEGORIES %}Category: {{ article.category }}{% endif %} | {% if article.tags %} Tags: {% for tag in article.tags %} {{ tag }} {% if not loop.last %} / {% endif %} {% endfor %}
{% endif %}
+ {% endfor %}
+{% endif %}
+{% endblock content %}