{% for post in posts %}
{{ post.permalink | uriencode }}
{% if post.lastUpdated() %}
{{ post.lastUpdated() }}
{% elif post.date %}
{{ post.date }}
{% endif %}
{% endfor %}
{# ------------- home page - with now date #}
{{ config.url }}
{{ sNow }}
daily
1.0
{# ------------- tag pages #}
{% for tag in tags %}
{{ tag.permalink }}
{{ sNow }}
daily
0.6
{% endfor %}
{# ------------- categories pages #}
{% for cat in categories %}
{{ cat.permalink }}
{{ sNow }}
daily
0.6
{% endfor %}