summaryrefslogtreecommitdiffstats
path: root/modules/doc/application/views/scripts/style/font.phtml
blob: c84a9836597a82086cca0b2d62b82fcc965b7c91 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<div class="controls">
<?= $this->tabs ?>
<h1>Icinga Web 2 Icons</h1>
</div>

<div class="content">
<?php foreach ($this->font->glyphs as $icon): ?>
<!-- TODO: move CSS away //-->
<div style="width: 33%; font-size: 1.5em; height: 2em; float: left;" class="<?=
    $this->font->css_prefix_text . $icon->css
?>">
<?= $this->escape($icon->css) ?> <span style="font-size: 0.6em">(0x<?= dechex($icon->code) ?>)</span>
</div>
<?php endforeach ?>
</div>