diff options
Diffstat (limited to 'archive/index.php')
-rw-r--r-- | archive/index.php | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/archive/index.php b/archive/index.php index 9b2ea8e..87d367c 100644 --- a/archive/index.php +++ b/archive/index.php @@ -1,8 +1,13 @@ <?php $_TITLE = "Projects Archives"; 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 style="z-index: 5;background: #fff;min-height: calc(100vh - 57px);" id="main-box"> + <div id="project-hero" style="background-image:url('/static/hero/archive.jpg');"></div> + <div class="container"> <?php $_ACTIVE = "archive"; require_once $_SERVER['DOCUMENT_ROOT'] . "/includes/categories.php"; ?> <h2><?= l("Projects Archives", "Archives des projets") ?></h2> + <div class="alert alert-secondary"> + <strong>Note : </strong>You may find more archived projects on <a href="https://github.com/Minteck-Archives">Minteck's GitHub archives</a>. + </div> <?php require_once $_SERVER['DOCUMENT_ROOT'] . "/includes/archive/main.php"; ?> </div> |