SW/showtimes/index.php
2021-05-13 00:10:19 +02:00

16 lines
388 B
PHP

<?php
//General Config File:
require_once('../assets/php/config.php');
//Page-specific content:
$section = '<!-- Films -->
<section id="films_billboard">
<div class="row">
'.$template->print_fimls().'
</div>
</section>';
//General page content:
require RAIZ_APP.'/HTMLtemplate.php';
?>