12 lines
202 B
PHP
12 lines
202 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
return function ($site, $pages, $page) {
|
||
|
|
|
||
|
|
return array(
|
||
|
|
'ptemplate' => $page->intendedTemplate(),
|
||
|
|
'artists' => $site->index()->published()->filterBy('intendedTemplate', 'artist'),
|
||
|
|
);
|
||
|
|
}
|
||
|
|
|
||
|
|
?>
|