This commit is contained in:
Zach Leatherman 2019-04-04 20:49:20 -05:00
parent c700f094a6
commit d2439adf61
4 changed files with 4 additions and 6 deletions

2
404.md
View File

@ -1,7 +1,7 @@
--- ---
layout: layouts/home.njk layout: layouts/home.njk
permalink: 404.html permalink: 404.html
excludeFromSitemap: true eleventyExcludeFromCollections: true
--- ---
# Content not found. # Content not found.

View File

@ -1,6 +1,6 @@
--- ---
permalink: feed/feed.xml permalink: feed/feed.xml
excludeFromSitemap: true eleventyExcludeFromCollections: true
--- ---
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom"> <feed xmlns="http://www.w3.org/2005/Atom">

View File

@ -1,6 +1,6 @@
--- ---
permalink: feed/.htaccess permalink: feed/.htaccess
excludeFromSitemap: true eleventyExcludeFromCollections: true
--- ---
# For Apache, to show `{{ metadata.feed.filename }}` when browsing to directory /feed/ (hide the file!) # For Apache, to show `{{ metadata.feed.filename }}` when browsing to directory /feed/ (hide the file!)
DirectoryIndex {{ metadata.feed.filename }} DirectoryIndex {{ metadata.feed.filename }}

View File

@ -1,16 +1,14 @@
--- ---
permalink: /sitemap.xml permalink: /sitemap.xml
excludeFromSitemap: true eleventyExcludeFromCollections: true
--- ---
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
{%- for page in collections.all %} {%- for page in collections.all %}
{%- if not page.data.excludeFromSitemap %}
{% set absoluteUrl %}{{ page.url | url | absoluteUrl(metadata.url) }}{% endset %} {% set absoluteUrl %}{{ page.url | url | absoluteUrl(metadata.url) }}{% endset %}
<url> <url>
<loc>{{ absoluteUrl }}</loc> <loc>{{ absoluteUrl }}</loc>
<lastmod>{{ page.date | htmlDateString }}</lastmod> <lastmod>{{ page.date | htmlDateString }}</lastmod>
</url> </url>
{%- endif %}
{%- endfor %} {%- endfor %}
</urlset> </urlset>