25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

13 lines
506 B

  1. <div class="<?php echo $this->class ?> block" <?php echo $this->cssID ?>>
  2. <div class="solution-text">
  3. <h2><?php echo $this->title ?></h2>
  4. <?php echo $this->text ?>
  5. <?php if ($this->link): ?>
  6. <div class="link">
  7. <div class="btn">
  8. <a href="<?php echo $this->link ?>"<?php if ($this->external): ?> target="_blank"<?php endif; ?>><?php if($this->linktitle): ?><?= $this->linktitle ?><?php else: ?>Beispiel-Case<?php endif; ?></a>
  9. </div>
  10. </div>
  11. <?php endif; ?>
  12. </div>
  13. </div>