{% endfor %}
diff --git a/feed/feed.njk b/feed/feed.njk
index 636c9c2..f889671 100644
--- a/feed/feed.njk
+++ b/feed/feed.njk
@@ -1,5 +1,6 @@
---
permalink: feed/feed.xml
+excludeFromSitemap: true
---
@@ -23,4 +24,4 @@ permalink: feed/feed.xml
{{ post.templateContent | htmlToAbsoluteUrls(absolutePostUrl) }}
{%- endfor %}
-
\ No newline at end of file
+
diff --git a/feed/htaccess.njk b/feed/htaccess.njk
index 3318d60..8b4e0d9 100644
--- a/feed/htaccess.njk
+++ b/feed/htaccess.njk
@@ -1,5 +1,6 @@
---
permalink: feed/.htaccess
+excludeFromSitemap: true
---
# For Apache, to show `{{ metadata.feed.filename }}` when browsing to directory /feed/ (hide the file!)
-DirectoryIndex {{ metadata.feed.filename }}
\ No newline at end of file
+DirectoryIndex {{ metadata.feed.filename }}
diff --git a/posts/firstpost.md b/posts/firstpost.md
index 55f3af9..8bd3e44 100644
--- a/posts/firstpost.md
+++ b/posts/firstpost.md
@@ -19,4 +19,7 @@ function myCommand() {
let counter = 0;
counter++;
}
+
+// Test with a line break above this line.
+console.log('Test');
```
diff --git a/posts/thirdpost.md b/posts/thirdpost.md
index d128384..cae99a4 100644
--- a/posts/thirdpost.md
+++ b/posts/thirdpost.md
@@ -13,6 +13,9 @@ function myCommand() {
let counter = 0;
counter++;
}
+
+// Test with a line break above this line.
+console.log('Test');
```
Bring to the table win-win survival strategies to ensure proactive domination. At the end of the day, going forward, a new normal that has evolved from generation X is on the runway heading towards a streamlined cloud solution. User generated content in real-time will have multiple touchpoints for offshoring.
diff --git a/sitemap.xml.njk b/sitemap.xml.njk
new file mode 100644
index 0000000..d1745a3
--- /dev/null
+++ b/sitemap.xml.njk
@@ -0,0 +1,16 @@
+---
+permalink: /sitemap.xml
+excludeFromSitemap: true
+---
+
+
+{%- for page in collections.all %}
+{%- if not page.data.excludeFromSitemap %}
+ {% set absoluteUrl %}{{ page.url | url | absoluteUrl(metadata.url) }}{% endset %}
+
+ {{ absoluteUrl }}
+ {{ page.date | htmlDateString }}
+
+{%- endif %}
+{%- endfor %}
+