{% extends "frame.twig" %} {% block title %} {{ title }} {% endblock %} {% block mainContent %}
{{title}}
This is a custom temlate

{{content | raw}}

Files
{% for doc in files %} {% if doc.type != "mp3" %} {% set path = doc.file|split('/') %} {{path[6]}} {% endif %} {% endfor %}
Sounds
{% for doc in files %} {% if doc.type == "mp3" %} {% endif %} {% endfor %}

{{meta['who']}} dropped this {{ meta['when'] }}
tags: {% for tag in meta['tags'] %} {% if dynamicRender is defined %} {% if dynamicRender == 'true' %} {{ tag.label }} {% else %} {{ tag.label }} {% endif %} {% else %} {{ tag.label }} {% endif %} {% endfor %}
{% endblock %}