18 lines
482 B
PHTML
18 lines
482 B
PHTML
<?php
|
|
if ($this->data['type'] === 'imageSmall')
|
|
{
|
|
$imageClass = 'col-md-4';
|
|
$textClass = 'col-md-8';
|
|
}
|
|
else
|
|
{
|
|
$imageClass = 'col-md-8';
|
|
$textClass = 'col-md-4';
|
|
}
|
|
?>
|
|
<div class="row">
|
|
<div class="<?php echo $imageClass; ?>"><img class="img-responsive" src="<?php echo HTML_IMG . $this->data['image']; ?>"/></div>
|
|
<div class="<?php echo $textClass; ?>"><?php echo nl2br($this->data['text']); ?></div>
|
|
<div class="clearfix"></div>
|
|
</div>
|
|
<div class="row"> </div>
|