add jekyll boilerplate
This commit is contained in:
+20
@@ -0,0 +1,20 @@
|
||||
---
|
||||
---
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
|
||||
{% for post in site.posts %}
|
||||
<url>
|
||||
<loc>{{ site.url }}{{ post.url | remove: 'index.html' }}</loc>
|
||||
</url>
|
||||
{% endfor %}
|
||||
|
||||
{% for page in site.pages %}
|
||||
{% if page.layout != nil %}
|
||||
{% if page.layout != 'feed' %}
|
||||
<url>
|
||||
<loc>{{ site.url }}{{ page.url | remove: 'index.html' }}</loc>
|
||||
</url>
|
||||
{% endif %}
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
</urlset>
|
||||
Reference in New Issue
Block a user