SW/promotions/index.php

16 lines
399 B
PHP
Raw Normal View History

2021-05-19 11:23:56 +02:00
<?php
//General Config File:
require_once('../assets/php/config.php');
//Specific page content:
$section = '<!-- Promotions -->
2021-05-25 12:21:50 +02:00
<section class="row">
2021-05-24 17:02:40 +02:00
<section id="promociones">
'.$template->print_promotions().'
</section>
2021-05-25 12:21:50 +02:00
</section>
2021-05-19 11:23:56 +02:00
';
//General page content:
require RAIZ_APP.'/HTMLtemplate.php';
?>