{% if posts %}
{% for post in posts.toArray() %}
{% if post.indexing == undefined or post.indexing %}
{{ post.title }}
{{ [url, post.path] | urlJoin | uriencode }}
{% if content %}
{% endif %}
{% if post.categories and post.categories.length>0 %}
{% for cate in post.categories.toArray() %}
{{ cate.name }}
{% endfor %}
{% endif %}
{% if post.tags and post.tags.length>0 %}
{% for tag in post.tags.toArray() %}
{{ tag.name }}
{% endfor %}
{% endif %}
{% endif %}
{% endfor %}
{% endif %}
{% if pages %}
{% for page in pages.toArray() %}
{% if post.indexing == undefined or post.indexing %}
{{ page.title }}
{{ [url, post.path] | urlJoin | uriencode }}
{% if content %}
{% endif %}
{% endif %}
{% endfor %}
{% endif %}