mirror of
https://github.com/slawkens/myaac.git
synced 2026-02-06 13:16:22 +01:00
Replaced complex gallery with simple script Slideshow loaded from images/gallery folder Credits: https://www.w3schools.com/howto/howto_js_slideshow.asp
13 lines
243 B
PHP
13 lines
243 B
PHP
<?php
|
|
|
|
if(PAGE !== 'news') {
|
|
return;
|
|
}
|
|
|
|
$configGalleryImageThumb = config('gallery_image_thumb');
|
|
if (!empty($configGalleryImageThumb)) {
|
|
$twig->display('gallery.html.twig', array(
|
|
'image' => GALLERY_DIR . $configGalleryImageThumb,
|
|
));
|
|
}
|