diff options
author | Minteck <46352972+Minteck@users.noreply.github.com> | 2021-07-20 01:15:15 +0200 |
---|---|---|
committer | Minteck <46352972+Minteck@users.noreply.github.com> | 2021-07-20 01:15:15 +0200 |
commit | af9e5ef458b93ef2003905e1ccc5665e7266c242 (patch) | |
tree | 989ac25a8b75578788cd7157308f37b9b83cf8f5 /creations/dev/index.php | |
download | main-af9e5ef458b93ef2003905e1ccc5665e7266c242.tar.gz main-af9e5ef458b93ef2003905e1ccc5665e7266c242.tar.bz2 main-af9e5ef458b93ef2003905e1ccc5665e7266c242.zip |
Commit
Diffstat (limited to 'creations/dev/index.php')
-rw-r--r-- | creations/dev/index.php | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/creations/dev/index.php b/creations/dev/index.php new file mode 100644 index 0000000..1cefac1 --- /dev/null +++ b/creations/dev/index.php @@ -0,0 +1,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"; ?> |