diff --git a/_includes/base.njk b/_includes/base.njk
index 7d4c51b..93e5035 100644
--- a/_includes/base.njk
+++ b/_includes/base.njk
@@ -88,6 +88,12 @@
source
+
+
+
+
+ rss
+
diff --git a/assets/rss-icon.svg b/assets/rss-icon.svg
new file mode 100644
index 0000000..7e0ffe6
--- /dev/null
+++ b/assets/rss-icon.svg
@@ -0,0 +1,4 @@
+
\ No newline at end of file
diff --git a/feed.njk b/feed.njk
new file mode 100644
index 0000000..d0189de
--- /dev/null
+++ b/feed.njk
@@ -0,0 +1,28 @@
+---
+permalink: /feed.xml
+eleventyExcludeFromCollections: true
+---
+
+
+
+ Volpe
+ {{ site.url }}/
+ Blog posts from Volpe
+ en
+
+ {%- for post in collections.posts | reverse %}
+ -
+ {{ post.data.title | escape }}
+ {{ site.url }}{{ post.url }}
+ {{ site.url }}{{ post.url }}
+ {{ post.data.createdAt.toRFC2822() }}
+ {%- if post.data.updatedAt %}
+ {{ post.data.updatedAt.toISO() }}
+ {%- endif %}
+ {%- if post.data.description %}
+
+ {%- endif %}
+
+ {%- endfor %}
+
+
\ No newline at end of file