<?php if($product['attribute_groups']) { ?>
<div>
<table class="table table-bordered table-condensed table-striped">
<thead>
</thead>
<tbody>
<?php foreach($product['attribute_groups'] as $attribute_group) { ?>
<?php foreach($attribute_group['attribute'] as $attribute) { ?>
<tr>
<td><b><?php echo $attribute['name']; ?></b></td>
<td><?php echo $attribute['text']; ?></td>
</tr>
<?php } ?>
<?php } ?>
</tbody>
</table>
</div>
<?php } ?>