diff options
Diffstat (limited to 'blog/index.php')
-rw-r--r-- | blog/index.php | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/blog/index.php b/blog/index.php new file mode 100644 index 0000000..7c3040b --- /dev/null +++ b/blog/index.php @@ -0,0 +1,14 @@ +<?php $_TITLE = "Blog"; 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"> + <h2><?= l("All blog articles", "Tous les articles du blog") ?></h2> + <div class="alert alert-secondary"> + <strong>Note :</strong> If you want a more generally tech-centric blog that doesn't necessarily talk about me, you should check out <a target="_blank" href="https://unchainedtech.minteck.ro.lt">UnchainedTech</a>, that is also accessible <a href="http://blgchnxuwuxqwclt247g6d4sxun4w3cqohkwgtjmckb6nbzu2pfssvyd.onion/">here</a> if you are using the Tor network. + </div> + + <?php require_once $_SERVER['DOCUMENT_ROOT'] . "/includes/blog/list.php"; ?> + </div> + + <br> +</div> +<?php require_once $_SERVER['DOCUMENT_ROOT'] . "/includes/footer.php"; ?> |