
<?php if ($this->title): ?>
  <h1><?= $this->title ?></h1>
<?php endif; ?>

<?php if ($this->text): ?>
  <?= $this->text ?>
<?php endif; ?>

<?php if ($this->wildcard): ?>
  <div class="tl_gray">
    <span class="upper"><?= $this->wildcard ?></span>
    <?php if ($this->link): ?>
      <br>
      <?= $this->link ?> (<a href="<?= $this->href.'&amp;rt='.REQUEST_TOKEN ?>" class="tl_gray">ID: <?= $this->id ?></a>)
    <?php endif; ?>
  </div>
<?php endif; ?>