Файл: contao-3.5.8/system/modules/core/templates/modules/mod_quicknav.xhtml
Строк: 26
<?php $this->extend('block_unsearchable'); ?>
<?php $this->block('content'); ?>
<form action="<?= $this->request ?>" method="post">
<div class="formbody">
<input type="hidden" name="FORM_SUBMIT" value="tl_quicknav" />
<input type="hidden" name="REQUEST_TOKEN" value="{{request_token}}" />
<label for="ctrl_target" class="invisible"><?= $this->targetPage ?></label>
<select name="target" id="ctrl_target" class="select">
<option value=""><?= $this->title ?></option>
<?php foreach ($this->items as $item): ?>
<option value="<?= $item['href'] ?>"><?= str_repeat(' ', $item['level']) ?><?= $item['link'] ?></option>
<?php endforeach; ?>
</select>
<input type="submit" class="submit" value="<?= $this->button ?>" />
</div>
</form>
<?php $this->endblock(); ?>