Files
xamxam/config/apropos.php

54 lines
1.7 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?php
/**
* À propos page — contacts and credits configuration.
*
* Edit this file to update the people listed in the Contacts and Crédits
* sections of the public "À propos" page without touching the template.
*
* contacts[] — each entry:
* 'name' string Full display name
* 'role' string Short description of role (plain text, no HTML)
* 'email' string Email address (used for mailto: link)
*
* credits[] — each entry:
* 'label' string Credit category / title (e.g. "Design & développement")
* 'value' string Free-text value; HTML entities will be escaped, so use
* plain text (ampersands written as "&", not "&amp;")
*
* erg_url — URL for the "Site de l'erg" link in the aside.
*/
return [
'erg_url' => 'https://erg.be',
'contacts' => [
[
'name' => 'Laurent Leprince',
'role' => 'Bibliothèque darchitecture, dingénierie architecturale, durbanisme (BAIU) :',
'email' => 'laurent.leprince@uclouvain.be',
],
[
'name' => 'Xavier Gorgol',
'role' => 'Responsable des mémoires de lERG :',
'email' => 'xavier.gorgol@erg.be',
],
[
'name' => 'Brigitte Ledune',
'role' => 'Cours de suivi de mémoire :',
'email' => 'brigitte.ledune@erg.be',
],
],
'credits' => [
[
'label' => 'Design & développement',
'value' => 'Olivia Marly, Théophile Gerveau-Mercie & Théo Hennequin',
],
[
'label' => 'Typographies',
'value' => 'Ductus (Amélie Dumont) & BBB DM Sans',
],
],
];