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