summaryrefslogtreecommitdiff
path: root/resources/views/layouts
diff options
context:
space:
mode:
Diffstat (limited to 'resources/views/layouts')
-rw-r--r--resources/views/layouts/parts/footer.twig12
1 files changed, 7 insertions, 5 deletions
diff --git a/resources/views/layouts/parts/footer.twig b/resources/views/layouts/parts/footer.twig
index e986963a..85d87473 100644
--- a/resources/views/layouts/parts/footer.twig
+++ b/resources/views/layouts/parts/footer.twig
@@ -25,11 +25,13 @@
{% endif %}
{% endblock %}
- <a href="{{ config('faq_url') }}">{{ __('FAQ') }}</a>
- · <a href="{{ config('contact_email') }}">
- <span class="glyphicon glyphicon-envelope"></span> {{ __('Contact') }}
- </a>
- · <a href="https://github.com/engelsystem/engelsystem/issues">{{ __('Bugs / Features') }}</a>
+ {% for name,url in config('footer_items') %}
+ <a href="{{ url }}">
+ {% if '@' in url %}<span class="glyphicon glyphicon-envelope"></span>{% endif %}
+ {{ __(name) }}
+ </a> ·
+ {% endfor %}
+ <a href="https://github.com/engelsystem/engelsystem/issues">{{ __('Bugs / Features') }}</a>
· <a href="https://github.com/engelsystem/engelsystem/">{{ __('Development Platform') }}</a>
· <a href="{{ url('credits') }}">{{ __('Credits') }}</a>
</div>