julienmonnerie/site/controllers/gallery.php

16 lines
357 B
PHP
Raw Normal View History

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