File: /var/www/vcz/wp-content/themes/volonteka/templates/pages/reports.twig
{% extends "base-single.twig" %}
{% block title %}
<h1 class="h2">{{ post.title }}</h1>
<h2 class="h4">{{ post.subtitle }}</h2>
<p class="">{{ post.address }}</p>
{% endblock %}
{% block image %}
{% if post.thumbnail %}
{% set image = Image(post.thumbnail) %}
<img src="{{ image.src|resize(940,400) }}" alt="{{ image.alt }}" class="card__img">
{% endif %}
{% endblock %}
{% block main_content %}
{% for reports_group in post.meta('reports_group') %}
<div class="accordion-group">
<h1 class="h4">{{ reports_group.title }}</h1>
{% for item in reports_group.reports %}
<div class="accordion">
<div class="accordion__header">
<h2 class="h5">{{ item.title }}</h2>
<svg class="icon-accordion-icon">
<use xlink:href="{{ site.theme.link }}/frontend/icons/icons.svg#icon-arrow-right-small"></use>
</svg>
</div>
<div class="accordion__content">
{{ item.text }}
{% if (item.file) %}
<a href="{{ item.file.url }}" target="_blank" class="btn btn--with-icon">
<svg class="icon-btn">
<use xlink:href="{{ site.theme.link }}/frontend/icons/icons.svg#icon-link"></use>
</svg>
<span>{{ item.button_label }}</span>
</a>
{% endif %}
</div>
</div>
{% endfor %}
</div>
{% endfor %}
{% endblock %}