34 lines
635 B
Twig
34 lines
635 B
Twig
{% extends "templates/layout/base.twig" %}
|
|
|
|
{% block content %}
|
|
{{ parent() }}
|
|
|
|
{% if meta.embed %}
|
|
<iframe src="{{ meta.url }}"
|
|
frameborder="0"
|
|
style="width:100%; height:80vh;"></iframe>
|
|
|
|
{% endif %}
|
|
{% endblock %}
|
|
|
|
|
|
{% block aside %}
|
|
|
|
{% for image in images %}
|
|
{% if image.meta %}
|
|
<figure>
|
|
{% endif %}
|
|
|
|
<img class="rounded shadowed"
|
|
src="{{ image.url }}"
|
|
alt="{{ image.name }}"
|
|
{{ image.size }}>
|
|
{% if image.meta %}
|
|
<figcaption>{{ image.meta.title }} ({{ image.meta.year }})<br />{{ image.meta.description }}</figcaption>
|
|
|
|
</figure>
|
|
{% endif %}
|
|
{% endfor %}
|
|
|
|
{% endblock %}
|