blob: 1cefac144115439cc2497f042db03f60c7d6bb2d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
<?php $_TITLE = "Software 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 = "dev"; require_once $_SERVER['DOCUMENT_ROOT'] . "/includes/categories.php"; ?>
<h2><?= l("Software Creations", "Mes logiciels") ?></h2>
<?php require_once $_SERVER['DOCUMENT_ROOT'] . "/includes/dev/list.php"; ?><br>
<p><a href="/archive"><?= l("More software on the archive page", "Plus de logiciels sur la page d'archives") ?></a></p>
</div>
<br>
</div>
<?php require_once $_SERVER['DOCUMENT_ROOT'] . "/includes/footer.php"; ?>
|