diff --git a/shared/_includes/sitemap.njk b/shared/_includes/sitemap.njk index e3e10a2..a081e09 100644 --- a/shared/_includes/sitemap.njk +++ b/shared/_includes/sitemap.njk @@ -1,9 +1,11 @@ {%- for page in collections.all %} + {%- if not page.url.includes("404") %} {{ site.url }}{{ page.url }} {{ page.date | date }} + {%- endif %} {%- endfor %} diff --git a/stefankoelle/pdf/cv.pdf b/stefankoelle/pdf/cv.pdf index b4938f2..4172131 100644 Binary files a/stefankoelle/pdf/cv.pdf and b/stefankoelle/pdf/cv.pdf differ diff --git a/stefankoelle/sitemap.xml.njk b/stefankoelle/sitemap.xml.njk index c84f06f..a36321b 100644 --- a/stefankoelle/sitemap.xml.njk +++ b/stefankoelle/sitemap.xml.njk @@ -5,7 +5,7 @@ eleventyExcludeFromCollections: true {%- for page in collections.all %} - {%- if page.url != "/cv-print/" %} + {%- if page.url != "/cv-print/" and not page.url.includes("404") %} {{ site.url }}{{ page.url }} {{ page.date | date }}