diff --git a/templates/partials/card.html b/templates/partials/card.html
index 22f9ba5..2de35b8 100644
--- a/templates/partials/card.html
+++ b/templates/partials/card.html
@@ -6,5 +6,5 @@
{%- set card = resize_image(path=page.colocated_path ~ page.extra.banner, width=1200, height=628, op="fill") -%}
{{ card.url }}
{%- else -%}
- {{ get_url(path='card.png') }}
+ {{ get_url(path="card.png") }}
{%- endif -%}
diff --git a/templates/partials/head.html b/templates/partials/head.html
index c6c6848..ff3d697 100644
--- a/templates/partials/head.html
+++ b/templates/partials/head.html
@@ -26,12 +26,16 @@
{%- include "partials/favicon.html" %}
{%- if config.generate_feeds and config.feed_filenames %}
- {%- for feed in config.feed_filenames %}
-
- {%- endfor %}
- {%- elif config.generate_feeds and config.feed_filenames | length > 0 %}
-
- {%- endif %}
+ {% for feed in config.feed_filenames %}
+ {% if feed == "atom.xml" %}
+
+ {% elif feed == "rss.xml" %}
+
+ {% else %}
+
+ {% endif %}
+ {% endfor %}
+ {% endif %}
{%- include "partials/variables.html" %}