blob: 1ea7270131b6e6e30a6ce7356b8c5ecb83daf07b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<?php $_TITLE = "Articles Index"; require_once $_SERVER['DOCUMENT_ROOT'] . "/includes/dom/header.php"; ?>
<div class="container" style="margin-top:30px;text-align: center;">
<h2>Here be dragons!</h2>
<p>This is the complete list of all the posts that were on Blogchain one day. Yep, they are all here!</p>
</div>
<?php $list = getArticlesList() ?>
<div class="container">
<div class="list-group">
<?php $index = 0;foreach ($list as $id => $item): ?>
<a href="/article/<?= $item["id"] ?>" class="list-group-item list-group-item-action"><?= $item["title"] ?></a>
<?php $index++;endforeach; ?>
</div>
</div>
<?php require_once $_SERVER['DOCUMENT_ROOT'] . "/includes/dom/footer.php"; ?>
|