Replace span with a link + href in about.php for credits

This commit is contained in:
Pontoporeia
2026-05-07 19:40:32 +02:00
parent e0c748d8e7
commit 51f9f56e09
5 changed files with 40 additions and 61 deletions

View File

@@ -3,25 +3,34 @@
* Render a comma-separated list of entries with links.
* Entries joined with comma, last two joined with " & ".
*/
function renderEntries(array $entries): string {
if (empty($entries)) return '';
function renderEntries(array $entries): string
{
if (empty($entries)) {
return "";
}
$parts = [];
foreach ($entries as $e) {
$text = htmlspecialchars($e['text'] ?? '');
$url = $e['url'] ?? '';
$text = htmlspecialchars($e["text"] ?? "");
$url = $e["url"] ?? "";
if (!empty($url)) {
$parts[] = '<span class="apropos-entry"><a href="' . htmlspecialchars($url) . '" target="_blank" rel="noopener">' . $text . '</a></span>';
$parts[] =
'<span class="apropos-entry"><a href="' .
htmlspecialchars($url) .
'" target="_blank" rel="noopener">' .
$text .
"</a></span>";
} else {
$parts[] = '<span class="apropos-entry">' . $text . '</span>';
$parts[] = '<span class="apropos-entry">' . $text . "</span>";
}
}
$count = count($parts);
if ($count === 1) return $parts[0];
$prefix = implode(', ', array_slice($parts, 0, $count - 2));
$suffix = implode(' & ', array_slice($parts, -2));
return $prefix !== '' ? $prefix . ', ' . $suffix : $suffix;
}
?>
if ($count === 1) {
return $parts[0];
}
$prefix = implode(", ", array_slice($parts, 0, $count - 2));
$suffix = implode(" & ", array_slice($parts, -2));
return $prefix !== "" ? $prefix . ", " . $suffix : $suffix;
} ?>
<main class="apropos-main" id="main-content">
<div class="apropos-layout">
@@ -64,16 +73,21 @@ function renderEntries(array $entries): string {
<div class="apropos-contacts-grid">
<?php foreach ($contacts as $group): ?>
<address class="apropos-contact-card">
<?= renderEntries($group['entries'] ?? []) ?>
<?php if (!empty($group['role'])): ?>
<span><?= htmlspecialchars($group['role']) ?></span>
<?= renderEntries($group["entries"] ?? []) ?>
<?php if (!empty($group["role"])): ?>
<span><?= htmlspecialchars($group["role"]) ?></span>
<?php endif; ?>
<?php
$emails = array_filter(array_column($group['entries'] ?? [], 'email'), fn($e) => !empty($e));
foreach ($emails as $email):
$emails = array_filter(
array_column($group["entries"] ?? [], "email"),
fn($e) => !empty($e),
);
foreach ($emails as $email): ?>
<a href="mailto:<?= htmlspecialchars(
$email,
) ?>"><?= htmlspecialchars($email) ?></a>
<?php endforeach;
?>
<a href="mailto:<?= htmlspecialchars($email) ?>"><?= htmlspecialchars($email) ?></a>
<?php endforeach; ?>
</address>
<?php endforeach; ?>
</div>
@@ -87,16 +101,16 @@ function renderEntries(array $entries): string {
<div class="apropos-credit-row">
<dt>Design & développement</dt>
<dd>
<span class="apropos-entry">Olivia Marly</span>,
<span class="apropos-entry">Théophile Gerveau-Mercie</span> &
<span class="apropos-entry">Théo Hennequin</span>
<a class="apropos-entry" target="_blank" href='&#x6D;&#x61;&#x69;&#x6C;&#x74;&#x6F;&#x3A;&#x6F;&#x6C;&#x69;&#x39;&#x38;&#x6D;&#x61;&#x72;&#x6C;&#x79;&#x40;&#x67;&#x6D;&#x61;&#x69;&#x6C;&#x2E;&#x63;&#x6F;&#x6D;&#xA;'>Olivia Marly</a>,
<a class="apropos-entry" target="_blank" href='https://tgm.happyngreen.fr'>Théophile Gerveau-Mercier</a> &
<a class="apropos-entry" target="_blank" href='https://theohennequin.com'>Théo Hennequin</a>
</dd>
</div>
<div class="apropos-credit-row">
<dt>Typographies</dt>
<dd>
<span class="apropos-entry">Ductus (Amélie Dumont)</span> &
<span class="apropos-entry">BBB DM Sans</span>
<a class="apropos-entry" target="_blank" href='https://typotheque.genderfluid.space/fr/fontes/ductus'><b>Ductus</b> - Amélie Dumont</a> &
<a class="apropos-entry" target="_blank" href='https://typotheque.genderfluid.space/fr/fontes/bbb-dm-sans'><b>BBB DM Sans</b> - Camille Circlude, Eugénie Bidaut, Mariel Nils, Bérénice Bouin</a>
</dd>
</div>
</dl>