blob: c73fa1a5117cbebb126f2ca0d9711d91862d287a (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
<?php $_TITLE = "Video Creations"; require_once $_SERVER['DOCUMENT_ROOT'] . "/includes/header.php"; ?>
<div style="margin-top: 56px;z-index: 5;background: #fff;padding-top: 20px;min-height: calc(100vh - 57px);" id="main-box">
<div class="container">
<?php $_ACTIVE = "video"; require_once $_SERVER['DOCUMENT_ROOT'] . "/includes/categories.php"; ?>
<h2><?= l("Video Creations", "Créations audiovisuelles") ?></h2>
<?php require_once $_SERVER['DOCUMENT_ROOT'] . "/includes/video/list.php"; ?>
</div>
<br>
</div>
<?php require_once $_SERVER['DOCUMENT_ROOT'] . "/includes/footer.php"; ?>
|