Fixed the template of Sitemap and Feed.
This commit is contained in:
parent
1ce1455ce2
commit
a9245494c9
2 changed files with 4 additions and 18 deletions
4
feed.xml
4
feed.xml
|
@ -30,8 +30,8 @@ layout: compress
|
||||||
<title>{{ post.title }}</title>
|
<title>{{ post.title }}</title>
|
||||||
<link href="{{ post_absolute_url }}" rel="alternate" type="text/html" title="{{ post.title }}" />
|
<link href="{{ post_absolute_url }}" rel="alternate" type="text/html" title="{{ post.title }}" />
|
||||||
<published>{{ post.date | date_to_xmlschema }}</published>
|
<published>{{ post.date | date_to_xmlschema }}</published>
|
||||||
{% if post.lastmod %}
|
{% if post.seo.date_modified %}
|
||||||
<updated>{{ post.lastmod | date_to_xmlschema }}</updated>
|
<updated>{{ post.seo.date_modified | date_to_xmlschema }}</updated>
|
||||||
{% else %}
|
{% else %}
|
||||||
<updated>{{ site.time | date_to_xmlschema }}</updated>
|
<updated>{{ site.time | date_to_xmlschema }}</updated>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
18
sitemap.xml
18
sitemap.xml
|
@ -10,22 +10,11 @@ layout: compress
|
||||||
|
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<urlset xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9 http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd" xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
|
<urlset xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9 http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd" xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
|
||||||
|
|
||||||
{% for post in site.posts %}
|
{% for post in site.posts %}
|
||||||
{% unless post.published == false %}
|
|
||||||
|
|
||||||
{% capture lastmod %}
|
|
||||||
{% if post.seo.date_modified %}
|
|
||||||
{{ post.seo.date_modified }}
|
|
||||||
{% elsif post.date %}
|
|
||||||
{{ post.date }}
|
|
||||||
{% else %}
|
|
||||||
{{ site.time }}
|
|
||||||
{% endif %}
|
|
||||||
{% endcapture %}
|
|
||||||
|
|
||||||
<url>
|
<url>
|
||||||
<loc>{{ site.url | append: site.baseurl | append: post.url }}</loc>
|
<loc>{{ site.url | append: site.baseurl | append: post.url }}</loc>
|
||||||
<lastmod>{{ lastmod | date_to_xmlschema }}</lastmod>
|
<lastmod>{{ site.time | date_to_xmlschema }}</lastmod>
|
||||||
|
|
||||||
{% if post.sitemap.changefreq %}
|
{% if post.sitemap.changefreq %}
|
||||||
<changefreq>{{ post.sitemap.changefreq }}</changefreq>
|
<changefreq>{{ post.sitemap.changefreq }}</changefreq>
|
||||||
|
@ -39,9 +28,6 @@ layout: compress
|
||||||
<priority>0.5</priority>
|
<priority>0.5</priority>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</url>
|
</url>
|
||||||
|
|
||||||
{% endunless %}
|
|
||||||
|
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
|
||||||
{% for page in site.pages %}
|
{% for page in site.pages %}
|
||||||
|
|
Loading…
Reference in a new issue