15 lines
333 B
PHP
15 lines
333 B
PHP
|
<?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 data
|
||
|
return compact(
|
||
|
'logoAriaLabel',
|
||
|
'logoHref',
|
||
|
);
|
||
|
};
|