<?php
/**
 * Custom element template example file
 */
?>
<div class="<?php echo $this->class; ?> block"<?php echo $this->cssID; ?><?php if ($this->style): ?> style="<?php echo $this->style; ?>"<?php endif; ?>>

<?php if(!$this->empty): ?>
<div class="content">
<?php foreach($this->fields() as $field): ?>
<?php echo $field->html(); ?>
<?php endforeach; ?>
</div>
<?php else: ?>
<p class="info empty"><?php echo $this->empty; ?></p>
<?php endif;?>
</div>