src/Front/Templates/_includes/_footer.html.twig line 1
{% if journal is not null %}
{% include '@front_templates/Journal/_layout/_footer.html.twig' %}
{% else %}
<footer class="footer">
<div class="container">
{% if app.request.locale == 'pl' %}
<img src="{{ asset('assets/img/logo-footer.svg') }}" alt="{{ 'LOGOTYP_MAIN_PAGE'|trans }}">
{% else %}
<img src="{{ asset('assets/img/logo-footer-en.svg') }}" style="width: 267px;" alt="{{ 'LOGOTYP_MAIN_PAGE'|trans }}">
{% endif %}
</div>
<div class="container footer-grid text-block">
<div class="text-block__content">
<b>{{ 'Kontakt ogólny'|trans }} | {{ 'Wsparcie techniczne'|trans }}</b>
{{ front_service.Config.readTranslation(app.request.locale, 'contactSupport')|raw }}
<b>{{ 'Adres'|trans }} | {{ 'Wsparcie techniczne'|trans }}</b>
{{ front_service.Config.readTranslation(app.request.locale, 'contactAddress')|raw }}
</div>
<div class="text-block__content">
<b>{{ 'Współpraca przy wydawaniu czasopism'|trans }}</b>
{{ front_service.Config.readTranslation(app.request.locale, 'contactCooperation')|raw }}
</div>
{% for group in front_service.footerMenuGroups(app.request.locale) %}
<nav class="footer-grid__nav">
{% set isLinkable = group.readTranslation(app.request.locale, 'isLinkable') %}
{% if isLinkable %}
{% set page = group.readTranslation(app.request.locale, 'page') %}
{% set link = group.readTranslation(app.request.locale, 'link') %}
<a href="{{ page
? site_url_generator.Url('page', { slug: page })
: link
}}" {% if group.isTargetBlank %}target="_blank"{% endif %}>
{% endif %}
<b>{{ group.readTranslation(app.request.locale, 'title') }}</b>
{% if isLinkable %}
</a>
{% endif %}
{% for item in group.items %}
{% set page = item.readTranslation(app.request.locale, 'page') %}
{% set link = item.readTranslation(app.request.locale, 'link') %}
<a href="{{ page
? site_url_generator.Url('page', { slug: page })
: link
}}" {% if item.isTargetBlank %}target="_blank"{% endif %}>
{{ item.readTranslation(app.request.locale, 'title') }}
</a>
{% endfor %}
</nav>
{% endfor %}
</div>
<div class="container subfooter text-block">
<span class="subfooter__copy">© Copyright by Wydawnictwo Uniwersytetu Jagiellońskiego</span>
<span class="subfooter__link">created by <a href="https://openform.pl/">OPENFORM</a></span>
</div>
</footer>
{% endif %}