summaryrefslogtreecommitdiffstats
path: root/modules/doc/application/views/scripts/search/index.phtml
blob: c613f04df8a0236919b74a10de62e3a6bce27400 (plain)
1
2
3
4
5
6
7
8
<div class="content">
    <?php foreach (/** @var \Icinga\Module\Doc\Renderer\DocSearchRenderer[] $searches */ $searches as $title => $search): ?>
        <h2><?= $this->escape($title) ?></h2>
        <?= $search->isEmpty()
            ? $this->translate('No documentation found matching the filter')
            : $search ?>
    <?php endforeach ?>
</div>