15 lines
315 B
PHP
15 lines
315 B
PHP
<?php
|
|
|
|
return function ($pages, $page) {
|
|
|
|
// Get exhibition page object
|
|
$exhibitionsPage = $pages->template('exhibitions')->first();
|
|
|
|
// Get image files section content
|
|
$images = $page->files()->template("image")->sortBy('sort');
|
|
|
|
return [
|
|
'exhibitionsPage' => $exhibitionsPage,
|
|
'images' => $images
|
|
];
|
|
};
|