File tree Expand file tree Collapse file tree 4 files changed +25
-0
lines changed
Expand file tree Collapse file tree 4 files changed +25
-0
lines changed Original file line number Diff line number Diff line change 22title : Not Found
33layout : prose
44permalink : 404.html
5+ eleventyExcludeFromCollections : true
56---
67
78# Not Found
Original file line number Diff line number Diff line change 11---
22layout: base
33title: JavaScriptMN
4+ changeFreq: daily
45---
56
67{# primary content #}
Original file line number Diff line number Diff line change 1+ ---
2+ permalink: /robots.txt
3+ eleventyExcludeFromCollections: true
4+ ---
5+ User-agent: *
6+ Allow: /
7+
8+ Sitemap: {{ site .url }}{{ ' /sitemap.xml' | url }}
Original file line number Diff line number Diff line change 1+ ---
2+ permalink: /sitemap.xml
3+ layout: null
4+ eleventyExcludeFromCollections: true
5+ ---
6+ <?xml version =" 1.0" encoding =" utf-8" ?>
7+ <urlset xmlns =" http://www.sitemaps.org/schemas/sitemap/0.9" >
8+ {% for page in collections .all %}
9+ <url >
10+ <loc >{{ site .url }}{{ page .url | url }} </loc >
11+ <lastmod >{{ page .date .toISOString () }} </lastmod >
12+ <changefreq >{{ page .data .changeFreq }} </changefreq >
13+ </url >
14+ {% endfor %}
15+ </urlset >
You can’t perform that action at this time.
0 commit comments