Лето {{ year }}

Смены:

    {% for s in shiftdb %}
  • {{ s.title }}
  • {% endfor %}

Домики:

    {% for h in housedb %}
  • {{ h.title }}
  • {% endfor %}

Фото:

{% with photos_dir, thumbs_dir = html_dirs(0) %} {% with photos = listdir(post_dirs(0)[0])[:4] %}
{% for p in photos %} {% with last = (loop.index == 4) %}
{% if last %}
Ещё
{% endif %}
{% endwith %} {% endfor %}
{% endwith %} {% endwith %}

Адрес:

{{ place['name'] }}
{% for post in news %}
{{ post.dt.timestamp() }}
{% with photos_dir, thumbs_dir = html_dirs(post.id) %} {% with photos = listdir(post_dirs(post.id)[0])[:4] %}

{{ post.title }}

{% autoescape true %} photos={{ photos_dir }}$! thumbs={{ thumbs_dir }}$! {{ post.body }} {% endautoescape %}
{% for p in photos %} {% with last = (loop.index == 4) %}
{% if last %}
Ещё
{% endif %}
{% endwith %} {% endfor %}
{% endwith %} {% endwith %}
{% endfor %}