julienmonnerie/site/controllers/site.php

15 lines
413 B
PHP
Raw Permalink Normal View History

2025-05-30 17:15:12 +02:00
<?php
return function ($site) {
// Get site URL (home page URL) to potentially override logo href and aria-label attributes in other templates
$logoHref = $site->url();
$logoAriaLabel = "Go to {$site->title()}'s home page";
// Return general site controller data (merged by default with data from specific controllers)
2025-05-30 17:15:12 +02:00
return compact(
'logoAriaLabel',
'logoHref',
);
};