fixing search json file
This commit is contained in:
27
sitemap.xml
27
sitemap.xml
@ -1,33 +1,10 @@
|
||||
---
|
||||
layout: null
|
||||
search: false
|
||||
search: exclude
|
||||
---
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
|
||||
{% for post in site.posts %}
|
||||
{% unless post.published == false %}
|
||||
<url>
|
||||
<loc>{{ site.url }}{{ post.url }}</loc>
|
||||
{% if post.sitemap.last_updated %}
|
||||
<last_updated>{{ post.sitemap.last_updated | date: "%Y-%m-%d" }}</last_updated>
|
||||
{% elsif post.date %}
|
||||
<last_updated>{{ post.date | date_to_xmlschema }}</last_updated>
|
||||
{% else %}
|
||||
<last_updated>{{ site.time | date_to_xmlschema }}</last_updated>
|
||||
{% endif %}
|
||||
{% if post.sitemap.changefreq %}
|
||||
<changefreq>{{ post.sitemap.changefreq }}</changefreq>
|
||||
{% else %}
|
||||
<changefreq>monthly</changefreq>
|
||||
{% endif %}
|
||||
{% if post.sitemap.priority %}
|
||||
<priority>{{ post.sitemap.priority }}</priority>
|
||||
{% else %}
|
||||
<priority>0.5</priority>
|
||||
{% endif %}
|
||||
</url>
|
||||
{% endunless %}
|
||||
{% endfor %}
|
||||
|
||||
{% for page in site.pages %}
|
||||
{% unless page.sitemap.exclude == "yes" %}
|
||||
<url>
|
||||
|
Reference in New Issue
Block a user