diff --git a/src/content/pages/404.html b/src/content/pages/404.html new file mode 100644 index 0000000..715e757 --- /dev/null +++ b/src/content/pages/404.html @@ -0,0 +1,15 @@ +--- +title: 404 +layout: base +permalink: /404.html +youtube: true +--- + +
+

404 🍞

+

Couldn't find what you're looking for. But would you like some bread for your journey home? πŸ₯–

+ {% youtube "GQw-aEk05qY", "Call 1800 TobΓ« ( Bread Ad )" %} +

+ πŸ‘ˆ I have my bread and I'm ready to go home. +

+
diff --git a/src/content/pages/robots.njk b/src/content/pages/robots.njk new file mode 100644 index 0000000..a4db2ee --- /dev/null +++ b/src/content/pages/robots.njk @@ -0,0 +1,8 @@ +--- +permalink: /robots.txt +eleventyExcludeFromCollections: true +--- +Sitemap: {{ meta.url }}/sitemap.xml + +User-agent: * +Disallow: diff --git a/src/content/pages/sitemap.njk b/src/content/pages/sitemap.njk new file mode 100644 index 0000000..9390e5e --- /dev/null +++ b/src/content/pages/sitemap.njk @@ -0,0 +1,13 @@ +--- +permalink: /sitemap.xml +eleventyExcludeFromCollections: true +--- + + + {% for page in collections.all %} + + {{ site.url }}{{ page.url | url }} + {{ page.date.toISOString() }} + + {% endfor %} +