Files
myaac/templates/tibiacom/boxes/gallery.php
slawkens 8d78e7090d Better gallery
Replaced complex gallery with simple script
Slideshow loaded from images/gallery folder
Credits: https://www.w3schools.com/howto/howto_js_slideshow.asp
2026-01-31 17:42:59 +01:00

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,
));
}