servnest/pg-view/index.php

27 lines
778 B
PHP

<nav>
<dl>
<dt><a class="auth" href="auth/"><?= PAGES['auth']['index']['title'] ?></a></dt>
<dd>
<?= PAGES['auth']['index']['description'] ?>
</dd>
<?php if (CONF['reg']['enabled'] === true) { ?>
<dt><a class="reg" href="reg/"><?= PAGES['reg']['index']['title'] ?></code></a></dt>
<dd>
<?= PAGES['reg']['index']['description'] ?>
</dd>
<?php } ?>
<?php if (CONF['ns']['enabled'] === true) { ?>
<dt><a class="ns" href="ns/"><?= PAGES['ns']['index']['title'] ?></a></dt>
<dd>
<?= PAGES['ns']['index']['description'] ?>
</dd>
<?php } ?>
<?php if (CONF['ht']['enabled'] === true) { ?>
<dt><a class="ht" href="ht/"><?= PAGES['ht']['index']['title'] ?></a></dt>
<dd>
<?= PAGES['ht']['index']['description'] ?>
</dd>
<?php } ?>
</dl>
</nav>