Adding sitemap
This commit is contained in:
parent
03e049af66
commit
2b600b8ba7
3 changed files with 29 additions and 0 deletions
16
assets/scss/sitemap.scss
Normal file
16
assets/scss/sitemap.scss
Normal file
|
@ -0,0 +1,16 @@
|
|||
@import "_variables";
|
||||
|
||||
urlset {
|
||||
background-color: $background_accent_2;
|
||||
url {
|
||||
color: $font_default;
|
||||
&:after {
|
||||
content: '\a';
|
||||
white-space: pre;
|
||||
}
|
||||
&:before {
|
||||
content: '> ';
|
||||
white-space: pre;
|
||||
}
|
||||
}
|
||||
}
|
4
content/sitemap.xml/contents.lr
Normal file
4
content/sitemap.xml/contents.lr
Normal file
|
@ -0,0 +1,4 @@
|
|||
_template: sitemap.xml
|
||||
---
|
||||
_model: none
|
||||
_discoverable: no
|
9
templates/sitemap.xml
Normal file
9
templates/sitemap.xml
Normal file
|
@ -0,0 +1,9 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?><?xml-stylesheet href="{{ 'css/sitemap.min.css'|asseturl }}" type="text/css" ?>
|
||||
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
|
||||
{%- for page in [site.root] if page != this recursive %}
|
||||
{%- if not page.hide_from_global_index %}
|
||||
<url><loc>{{ page|url(external=true) }}</loc></url>
|
||||
{{- loop(page.children) }}
|
||||
{%- endif %}
|
||||
{%- endfor %}
|
||||
</urlset>
|
Loading…
Reference in a new issue