Skip to content

Instantly share code, notes, and snippets.

@sw897
Created February 21, 2014 09:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sw897/9131118 to your computer and use it in GitHub Desktop.
Save sw897/9131118 to your computer and use it in GitHub Desktop.
---
# Remember to set production_url in your _config.yml file!
layout: nil
title : Sitemap
---
<?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.production_url}}{{ post.url }}</loc>
</url>
{% endfor %}
{% for page in site.pages %}
<url>
<loc>{{site.production_url}}{{ page.url }}</loc>
</url>
{% endfor %}
</urlset>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment