From 2aad181798c9ba91832fef3ca4efd0e23fc80fef Mon Sep 17 00:00:00 2001 From: Igor Scheller Date: Wed, 24 Oct 2018 14:54:37 +0200 Subject: Footer: Add additional links to the footer Closes #435 (Support for additional footer links) --- resources/views/layouts/parts/footer.twig | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) (limited to 'resources/views/layouts') 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 %} - {{ __('FAQ') }} - · - {{ __('Contact') }} - - · {{ __('Bugs / Features') }} + {% for name,url in config('footer_items') %} + + {% if '@' in url %}{% endif %} + {{ __(name) }} + · + {% endfor %} + {{ __('Bugs / Features') }} · {{ __('Development Platform') }} · {{ __('Credits') }} -- cgit v1.2.3-54-g00ecf