popnoire/site/controllers/shop.product.php

14 lines
251 B
PHP
Raw Normal View History

2026-02-12 15:22:46 +01:00
<?php
return function ($site, $pages, $page) {
$products = [$page];
return array(
'ptemplate' => $page->intendedTemplate(),
'artists' => $site->index()->published()->filterBy('intendedTemplate', 'artist'),
'products' => $products
);
}
?>