Code: Select all
<?php foreach ($this->items as $item) : ?>
<div class="contact">
<img src="<?php echo $item->image; ?>" alt="<?php echo $item->name; ?>" height="200" width="170" />
<dl>
<?php if ($this->params->get('show_position')) : ?>
<dt><?php echo JText::_('Position'); ?></dt>
<dd><?php echo $item->con_position; ?></dd>
<?php endif; ?>
<dt><?php echo JText::_('Name'); ?></dt>
<dd><a href="<?php echo $item->link; ?>"><?php echo $item->name; ?></a></dd>
<?php if ($this->params->get('show_email')) : ?>
<dt><?php echo JText::_('Email'); ?></dt>
<dd><?php echo $item->email_to; ?></dd>
<?php endif; ?>
<?php if ($this->params->get('show_telephone')) : ?>
<dt><?php echo JText::_('Telephone'); ?></dt>
<dd><?php echo $item->telephone; ?></dd>
<?php endif; ?>
<?php if ($this->params->get('show_mobile')) : ?>
<dt><?php echo JText::_('Mobile'); ?></dt>
<dd><?php echo $item->mobile; ?></dd>
<?php endif; ?>
<?php if ($this->params->get('show_fax')) : ?>
<dt><?php echo JText::_('Fax'); ?></dt>
<dd><?php echo $item->fax; ?></dd>
<?php endif; ?>
</dl>
</div>
<?php endforeach; ?>