{% if settings.enable_comment %} {% block head_ex %} {% endblock %} {% endif %}
{{ _("Latest Photos") }}
{% for photo in latestphotos %}
{{photo.description|truncate(20,True)}}
{% endfor %}
{% if settings.enable_comment %}
{{ _("Latest Comments") }}
{% for comment in latestcomments %}
  • {{ comment.author }} {{ comment.date|date('%Y-%m-%d %H:%M') }}
     {{ comment.content|truncate(140,True) }}
  • {% endfor %}
    {% endif %}