1
|
<?php
|
2
|
|
3
|
?>
|
4
|
|
5
|
<div class="<?php print $classes; ?>"<?php print $attributes; ?>>
|
6
|
<?php print render($title_prefix); ?>
|
7
|
<?php if (!empty($title)): ?>
|
8
|
<<?php print $title_element;?> <?php print $title_attributes; ?>>
|
9
|
<?php if (!empty($entity_url)): ?>
|
10
|
<a href="<?php print $entity_url; ?>"><?php print $title; ?></a>
|
11
|
<?php else: ?>
|
12
|
<?php print $title; ?>
|
13
|
<?php endif; ?>
|
14
|
</<?php print $title_element;?>>
|
15
|
<?php endif; ?>
|
16
|
<?php print render($title_suffix); ?>
|
17
|
<?php print $content; ?>
|
18
|
</div>
|