aboutsummaryrefslogtreecommitdiff
path: root/app/views/vips/sheets/content_bar_icons.php
blob: b0f98c12f2e42fc8f3316e4e4027dde1c83ba25c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<? if (isset($prev_exercise_url)): ?>
    <a href="<?= htmlReady($prev_exercise_url) ?>">
        <?= Icon::create('arr_1left')->asSvg(24, ['title' => _('Vorige Aufgabe')]) ?>
    </a>
<? else: ?>
    <span>
        <?= Icon::create('arr_1left', Icon::ROLE_INACTIVE)->asSvg(24) ?>
    </span>
<? endif ?>

<? if (isset($next_exercise_url)): ?>
    <a href="<?= htmlReady($next_exercise_url) ?>">
        <?= Icon::create('arr_1right')->asSvg(24, ['title' => _('Nächste Aufgabe')]) ?>
    </a>
<? else: ?>
    <span>
        <?= Icon::create('arr_1right', Icon::ROLE_INACTIVE)->asSvg(24) ?>
    </span>
<? endif ?>