--- layout: content --- {% for lang in site.languages %} {% for node in site.pages %} {% comment %}{% endcomment %} {% unless site.exclude_from_localization contains node.path %} {% comment %}{% endcomment %} {% if node.layout %} {% if lang == site.default_lang %}{{ node.url | absolute_url }}{% else %}{{ node.url | prepend: lang | prepend: '/' | absolute_url }}{% endif %} {% if node.last_modified_at and node.last_modified_at != node.date %}{{ node.last_modified_at | date: '%Y-%m-%dT%H:%M:%S%:z' }}{% elsif node.date %}{{ node.date | date: '%Y-%m-%dT%H:%M:%S%:z' }}{% endif %} {% endif %} {% endunless %} {% endfor %} {% comment %}{% endcomment %} {% for collection in site.collections %} {% for node in site[collection.label] %} {% if lang == site.default_lang %}{{ node.url | absolute_url }}{% else %}{{ node.url | prepend: lang | prepend: '/' | absolute_url }}{% endif %} {% if node.last_modified_at and node.last_modified_at != node.date %}{{ node.last_modified_at | date: '%Y-%m-%dT%H:%M:%S%:z' }}{% elsif node.date %}{{ node.date | date: '%Y-%m-%dT%H:%M:%S%:z' }}{% endif %} {% endfor %} {% endfor %} {% endfor %}