<?php
	// Add the highlight.php style sheet
	$GLOBALS['TL_CSS'][] = 'files/layout/css/syntax-highlight.css';
?>
<div class="<?= $this->class ?> block"<?= $this->cssID ?><?php if ($this->style): ?> style="<?= $this->style ?>"<?php endif; ?>>
  <?php $this->block('headline'); ?>
    <div class="wrap"><p><?= $this->headline ?></p></div>
    <div class="wrapper"> Code eingef&#252;gt. Hier klicken zum Ein- / Ausblenden </div>
    <div class="code">
      <pre><code class="<?= $this->cssClass ?>"><?= $this->code ?></code></pre>
    </div>
</div>