diff options
author | Igor Scheller <igor.scheller@igorshp.de> | 2018-10-24 14:54:37 +0200 |
---|---|---|
committer | Igor Scheller <igor.scheller@igorshp.de> | 2018-10-24 22:31:32 +0200 |
commit | 2aad181798c9ba91832fef3ca4efd0e23fc80fef (patch) | |
tree | f1816263c018d1ac816da15a83c94728e7960a4b /config | |
parent | 4f04924e29b3fdda53aab431411868dc117607f2 (diff) |
Footer: Add additional links to the footer
Closes #435 (Support for additional footer links)
Diffstat (limited to 'config')
-rw-r--r-- | config/config.default.php | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/config/config.default.php b/config/config.default.php index f53cb185..56ac6e6a 100644 --- a/config/config.default.php +++ b/config/config.default.php @@ -20,11 +20,14 @@ return [ // Set to development to enable debugging messages 'environment' => env('ENVIRONMENT', 'production'), - // URL to the angel faq and job description - 'faq_url' => env('FAQ_URL', 'https://events.ccc.de/congress/2013/wiki/Static:Volunteers'), + // Footer links + 'footer_items' => [ + // URL to the angel faq and job description + 'FAQ' => env('FAQ_URL', 'https://events.ccc.de/congress/2013/wiki/Static:Volunteers'), - // Contact email address, linked on every page - 'contact_email' => env('CONTACT_EMAIL', 'mailto:ticket@c3heaven.de'), + // Contact email address, linked on every page + 'Contact' => env('CONTACT_EMAIL', 'mailto:ticket@c3heaven.de'), + ], // Email config 'email' => [ |