now at home in "common"
This commit is contained in:
parent
ce539e444d
commit
ec3784a4a0
5 changed files with 0 additions and 87 deletions
|
|
@ -1,12 +0,0 @@
|
|||
---
|
||||
permalink: /_redirects
|
||||
eleventyExcludeFromCollections: true
|
||||
excludeFromSitemap: true
|
||||
---
|
||||
{% for page in collections.all %}
|
||||
{% if page.url and page.data.redirectFrom %}
|
||||
{% for oldUrl in page.data.redirectFrom %}
|
||||
{{ oldUrl }} {{ page.url }}
|
||||
{% endfor %}
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
|
|
@ -1,15 +0,0 @@
|
|||
---
|
||||
permalink: /humans.txt
|
||||
eleventyExcludeFromCollections: true
|
||||
excludeFromSitemap: true
|
||||
---
|
||||
|
||||
/* TEAM */
|
||||
Developer: {{ meta.author }}
|
||||
Contact: {{ meta.authorEmail }}
|
||||
Site: {{ meta.authorWebsite }}
|
||||
{% if meta.meta_data.mastodonCreator %}
|
||||
Mastodon: {{ meta.meta_data.mastodonCreator }}{% endif %}
|
||||
|
||||
/* SITE */
|
||||
Doctype: HTML5
|
||||
|
|
@ -1,8 +0,0 @@
|
|||
---
|
||||
permalink: /robots.txt
|
||||
eleventyExcludeFromCollections: true
|
||||
excludeFromSitemap: true
|
||||
---
|
||||
User-agent: *
|
||||
Disallow: /404.html
|
||||
Sitemap: {{ meta.url }}/sitemap.xml
|
||||
|
|
@ -1,31 +0,0 @@
|
|||
---
|
||||
permalink: /site.webmanifest
|
||||
eleventyExcludeFromCollections: true
|
||||
excludeFromSitemap: true
|
||||
---
|
||||
{
|
||||
"name": "{{ meta.siteName }} - {{ meta.siteDescription }}",
|
||||
"short_name": "{{ meta.siteName }}",
|
||||
"start_url": "{{ meta.url }}",
|
||||
"icons": [
|
||||
{
|
||||
"src": "/android-chrome-192x192.png",
|
||||
"sizes": "192x192",
|
||||
"type": "image/png"
|
||||
},
|
||||
{
|
||||
"src": "/android-chrome-512x512.png",
|
||||
"sizes": "512x512",
|
||||
"type": "image/png"
|
||||
},
|
||||
{
|
||||
"src": "/maskable.png",
|
||||
"sizes": "512x512",
|
||||
"type": "image/png",
|
||||
"purpose": "maskable"
|
||||
}
|
||||
],
|
||||
"theme_color": "{{ meta.themeColor }}",
|
||||
"background_color": "{{ meta.themeBgColor }}",
|
||||
"display": "standalone"
|
||||
}
|
||||
|
|
@ -1,21 +0,0 @@
|
|||
---
|
||||
permalink: /sitemap.xml
|
||||
eleventyExcludeFromCollections: true
|
||||
excludeFromSitemap: true
|
||||
---
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
|
||||
{% for page in collections.onlyMarkdown %}
|
||||
{% if page.url and page.data.excludeFromSitemap != true %}
|
||||
|
||||
{% if page.data.lastUpdated %}{% set lastmod = page.data.lastUpdated %}
|
||||
{% else %}{% set lastmod = page.date %}
|
||||
{% endif %}
|
||||
|
||||
<url>
|
||||
<loc>{{ meta.url }}{{ page.url }}</loc>
|
||||
<lastmod>{{ lastmod | toIsoString }}</lastmod>
|
||||
</url>
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
</urlset>
|
||||
Loading…
Reference in a new issue