<?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="nowrap"><p><?= $this->headline ?></p></div>
    <div class="code-no-wrap">
      <pre><code class="<?= $this->cssClass ?>"><?= $this->code ?></code></pre>
    </div>
</div>
