{% extends "base.html" %} {% block extra_scripts %} {% endblock %} {% block page %}
{% if title %}
{{ title | e }}
{% endif %} {% if messages %}
{% for message in messages %}

{{ message | e }}

{% endfor %}
{% endif %} {% if not videos %}

No videos were specified. To create an album, simply string together videos' shortened urls separated by semi-colons. For example:

Video 1: https://loopvid.kastden.org/pf/abc
Video 2: https://loopvid.kastden.org/pf/def
Album: https://loopvid.kastden.org/album/pf/abc;pf/def

Note that regular urls are not supported and will not be displayed. You can also set a title by adding ?title=My Title at the end. For example:

https://loopvid.kastden.org/album/pf/abc;pf/def?title=My Title

{% else %} {% if audio %}
{% endif %} {% for video in videos %}
{% endfor %} {% endif %}
{% endblock %}