{% extends 'base.html' %} {% block head %} Scrapbook {% endblock %} {% block content %}

Scrapbook posts

See on scrapbook

{% for post in posts%} {% if loop.first %}
{% else%}
{% endif %} {{ moment(post.postedAt).format('DD/MM/YYYY @ HH[h]mm') }}
{{ post.text | formatContent |safe }}
{% for attachment in post.attachments %}
{% if attachment.endswith(('.jpg', '.jpeg', '.png', '.gif', '.webp', '.svg', '.bmp')) %} Image {% elif attachment.endswith(('.mp4', '.webm', '.ogg', '.mov', '.avi')) %} {% else %}

URL does not appear to be an image or video: {{ attachment }}

{% endif %} {% endfor %}
{% endfor %} {% endblock %}