julienmonnerie/site/controllers/home.php

19 lines
445 B
PHP
Raw Permalink Normal View History

<?php
return function ($site) {
2025-05-30 17:15:12 +02:00
// Get CV page URL and override logo href and aria-label attributes
$logoHref = page('cv')->url();
$logoAriaLabel = "Go to {$site->title()}'s CV page";
2025-05-08 17:10:00 +02:00
// Get items from image gallery structure field
$galleryItems = $site->image_gallery()->toStructure();
// Return home controller data
return compact(
'galleryItems',
'logoAriaLabel',
'logoHref',
2025-05-30 17:15:12 +02:00
);
};