index.php 595 B

123456789101112131415161718192021
  1. <?php declare(strict_types=1); ?>
  2. <nav>
  3. <p>
  4. <span aria-hidden="true">➡️ </span><em><a href="<?= CONF['common']['about_url'] ?>"><?= _('About this installation') ?></a></em>
  5. </p>
  6. <dl>
  7. <?php
  8. foreach (CONF['common']['services'] as $service => $status) {
  9. if ($status === 'disabled')
  10. continue;
  11. ?>
  12. <?= ($status === 'error') ? '<s>' : '' ?>
  13. <dt><a class="<?= $service ?>" href="<?= $service ?>/"><?= PAGES[$service]['index']['title'] ?></a></dt>
  14. <dd>
  15. <?= PAGES[$service]['index']['description'] ?>
  16. </dd>
  17. <?= ($status === 'error') ? '</s>' : '' ?>
  18. <?php } ?>
  19. </dl>
  20. </nav>