feat: add important pages
This commit is contained in:
parent
dec83ade1c
commit
3711b0701c
3 changed files with 36 additions and 0 deletions
15
src/content/pages/404.html
Normal file
15
src/content/pages/404.html
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
---
|
||||||
|
title: 404
|
||||||
|
layout: base
|
||||||
|
permalink: /404.html
|
||||||
|
youtube: true
|
||||||
|
---
|
||||||
|
|
||||||
|
<section class="[ flow ]">
|
||||||
|
<h1>404 🍞</h1>
|
||||||
|
<p>Couldn't find what you're looking for. But would you like some bread for your journey home? 🥖</p>
|
||||||
|
{% youtube "GQw-aEk05qY", "Call 1800 Tobë ( Bread Ad )" %}
|
||||||
|
<p>
|
||||||
|
<a href="{{ meta.url }}">👈 I have my bread and I'm ready to go home.</a>
|
||||||
|
</p>
|
||||||
|
</section>
|
8
src/content/pages/robots.njk
Normal file
8
src/content/pages/robots.njk
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
---
|
||||||
|
permalink: /robots.txt
|
||||||
|
eleventyExcludeFromCollections: true
|
||||||
|
---
|
||||||
|
Sitemap: {{ meta.url }}/sitemap.xml
|
||||||
|
|
||||||
|
User-agent: *
|
||||||
|
Disallow:
|
13
src/content/pages/sitemap.njk
Normal file
13
src/content/pages/sitemap.njk
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
---
|
||||||
|
permalink: /sitemap.xml
|
||||||
|
eleventyExcludeFromCollections: true
|
||||||
|
---
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
|
||||||
|
{% for page in collections.all %}
|
||||||
|
<url>
|
||||||
|
<loc>{{ site.url }}{{ page.url | url }}</loc>
|
||||||
|
<lastmod>{{ page.date.toISOString() }}</lastmod>
|
||||||
|
</url>
|
||||||
|
{% endfor %}
|
||||||
|
</urlset>
|
Loading…
Add table
Add a link
Reference in a new issue