2022-08-02 15:49:35 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
return function ($pages, $page) {
|
|
|
|
|
|
|
|
// Get exhibition page object
|
|
|
|
$exhibitionsPage = $pages->template('exhibitions')->first();
|
|
|
|
|
2022-08-02 18:50:27 +02:00
|
|
|
// Get image files section content
|
2022-08-03 16:49:26 +02:00
|
|
|
$images = $page->files()->template("full_screen_image")->sortBy('sort');
|
2022-08-02 15:49:35 +02:00
|
|
|
|
|
|
|
return [
|
|
|
|
'exhibitionsPage' => $exhibitionsPage,
|
2022-08-02 18:50:27 +02:00
|
|
|
'images' => $images
|
2022-08-02 15:49:35 +02:00
|
|
|
];
|
|
|
|
};
|