engelsystem/resources/views/layouts/parts/footer.twig

50 lines
2.3 KiB
Twig

{% import 'macros/base.twig' as m %}
<div class="col-md-12">
<hr/>
<div class="text-center footer" style="margin-bottom: 10px;">
{% block eventinfo %}
{% if config('name') %}
{% if config('event_start') and config('event_end') %}
{{ __('footer.eventinfo.name_start_end', [
config('name'),
config('event_start').format(__('general.date')),
config('event_end').format(__('general.date'))
]) }}
{%- if config('enable_show_day_of_event') and day_of_event is defined -%}
, {{ __('event.day', [day_of_event]) }}
{% endif %}
{% elseif config('event_start') %}
{{ __('footer.eventinfo.name_start', [
config('name'),
config('event_start').format(__('general.date'))
]) }}
{%- if config('enable_show_day_of_event') and day_of_event is defined -%}
, {{ __('event.day', [day_of_event]) }}
{% endif %}
{% else %}
{{ config('name') }}
{% endif %} <br>
{% elseif config('event_start') and config('event_end') %}
{{ __('footer.eventinfo.start_end', [
config('event_start').format(__('general.date')),
config('event_end').format(__('general.date'))
]) }}
{%- if config('enable_show_day_of_event') and day_of_event is defined -%}
, {{ __('event.day', [day_of_event]) }}
{% endif %} <br>
{% endif %}
{% endblock %}
{% for name,url in config('footer_items') %}
<a href="{% if url starts with '/' %}{{ url(url) }}{% else %}{{ url }}{% endif %}">
{% if '@' in url %}{{ m.icon('envelope') }}{% endif %}
{{ __(name) }}
</a> ·
{% endfor %}
<a href="https://github.com/engelsystem/engelsystem/issues">{{ __('footer.issues') }}</a>
· <a href="https://github.com/engelsystem/engelsystem/">{{ __('footer.github') }}</a>
· <a href="{{ url('/credits') }}">{{ __('credits.title') }}</a>
</div>
</div>