Eigentlich könntest du ja auch das
	PHP-Code:
	
<?php echo $this->class; ?>
 zum <ul>/<ol> runterziehen  (und auch die id, damit das konsistent ist). Also:
 (und auch die id, damit das konsistent ist). Also:
	PHP-Code:
	
<div class="block"<?php if ($this->style): ?> style="<?php echo $this->style; ?>"<?php endif; ?>>
  <?php if ($this->headline): ?>
    <<?php echo $this->hl; ?>><?php echo $this->headline; ?></<?php echo $this->hl; ?>>
  <?php endif; ?>
  <<?php echo $this->tag; ?> class="<?php echo $this->class; ?>"<?php echo $this->cssID; ?>>
    <?php foreach ($this->items as $item): ?>
      <li class="andereKlasse"><?php echo $item['content']; ?></li>
    <?php endforeach; ?>
  </<?php echo $this->tag; ?>>
</div>