Skip to content

block_searchable.html5

Die Klasse .headline auch bei Modulen hinzufügen geht über das Template block_seachable.html5.

block_searchable.html5
<?php
/* fügt die Klasse .headline zu Überschriften in Modulen hinzu */
$this->wrapperAttributes = $this
->attrs($this->cssID)
->addClass([$this->class, 'block'])
->addStyle($this->style ?? '')
->mergeWith($this->wrapperAttributes)
;
?>
<?php $this->block('wrapper'); ?>
<div<?= $this->wrapperAttributes ?>>
<?php $this->block('headline'); ?>
<?php if ($this->headline): ?>
<<?= $this->hl ?> class="headline"><?= $this->headline ?></<?= $this->hl ?>>
<?php endif; ?>
<?php $this->endblock(); ?>
<?php $this->block('content'); ?>
<?php $this->endblock(); ?>
</div>
<?php $this->endblock(); ?>