20 lines
472 B
PHP
20 lines
472 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";
|
|
|
|
// Get contact fields content
|
|
$email = $site->email();
|
|
$instagram = $site->instagram();
|
|
|
|
// Return data
|
|
return compact(
|
|
'email',
|
|
'instagram',
|
|
'logoAriaLabel',
|
|
'logoHref',
|
|
);
|
|
};
|