SW/showtimes/index.php

16 lines
388 B
PHP
Raw Normal View History

2021-04-26 22:40:34 +02:00
<?php
//General Config File:
require_once('../assets/php/config.php');
2021-05-12 22:24:10 +02:00
//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';
2021-04-26 22:40:34 +02:00
?>