https://github.com/jekyll/jekyll
Raw File
Tip revision: 3feafed56c0f6e816500510ea7a83bfac962e188 authored by Parker Moore on 21 September 2017, 21:30:21 UTC
Release :gem: 3.6.0
Tip revision: 3feafed
sitemap.xml
---
layout: nil
---
<?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">

  <url>
    <loc>http://example.com</loc>
    <lastmod>{{ site.time | date: "%Y-%m-%d" }}</lastmod>
    <changefreq>daily</changefreq>
    <priority>1.0</priority>
  </url>

  {% for post in site.posts %}
  <url>
    <loc>http://example.com{{ post.url }}/</loc>
    <lastmod>{{ post.date | date: "%Y-%m-%d" }}</lastmod>
    <changefreq>monthly</changefreq>
    <priority>0.2</priority>
  </url>
  {% endfor %}

  {% for page in site.html_pages %}
  <url>
    <loc>http://example.com{{ page.url }}</loc>
    <lastmod>{{ site.time | date: "%Y-%m-%d" }}</lastmod>
    {% if page.changefreq %}<changefreq>{{ page.changefreq }}</changefreq>{% endif %}
    {% if page.priority %}<priority>{{ page.priority }}</priority>{% endif %}
  </url>
  {% endfor %}
</urlset>
back to top