SW/cinemas/index.php

16 lines
369 B
PHP
Raw Normal View History

2021-05-17 15:29:29 +02:00
<?php
//General Config File:
require_once('../assets/php/config.php');
2021-05-24 14:07:18 +02:00
//Page-specific content:
$section = '<!-- Cinemas -->
<section id="cinemas">
<div class="row">
'.$template->print_cinemas().'
</div>
</section>
';
2021-05-17 15:29:29 +02:00
//General page content:
require RAIZ_APP.'/HTMLtemplate.php';
?>