blob: 7d396bb24631ce2c10b3ad5edf83ee6244af9a58 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<?php $__ADMIN = true; $_TITLE = "UnchainedTech Administration"; require_once $_SERVER['DOCUMENT_ROOT'] . "/includes/dom/header.php"; ?>
<div class="container" style="margin-top:30px;text-align: center;">
<h2>Welcome back!</h2>
<p>You now have access to all unpublished blog articles, except on the RSS feed.</p>
</div>
<div class="container">
<h3>Tasks</h3>
<ul class="list-group">
<a class="list-group-item list-group-item-action" href="/admin/status">Data Sync Status</a>
</ul>
</div>
<?php require_once $_SERVER['DOCUMENT_ROOT'] . "/includes/dom/footer.php"; ?>
|