1 |
6c38d829
|
Assos Assos
|
<?php if (!empty($pre_object)) print render($pre_object) ?>
|
2 |
|
|
|
3 |
bfb52287
|
Assos Assos
|
<div<?php print $attributes ?>>
|
4 |
6c38d829
|
Assos Assos
|
<?php if (!empty($title_prefix)) print render($title_prefix); ?>
|
5 |
|
|
|
6 |
|
|
<?php if (!empty($title)): ?>
|
7 |
|
|
<h2 <?php if (!empty($title_attributes)) print $title_attributes ?>>
|
8 |
bfb52287
|
Assos Assos
|
<?php if (!empty($new)): ?><span class="new"><?php print $new ?></span><?php endif; ?>
|
9 |
6c38d829
|
Assos Assos
|
<?php print $title ?>
|
10 |
|
|
</h2>
|
11 |
|
|
<?php endif; ?>
|
12 |
|
|
|
13 |
|
|
<?php if (!empty($title_suffix)) print render($title_suffix); ?>
|
14 |
|
|
|
15 |
|
|
<?php if (!empty($submitted)): ?>
|
16 |
bfb52287
|
Assos Assos
|
<div class="<?php print $hook ?>-submitted clearfix"><?php print $submitted ?></div>
|
17 |
6c38d829
|
Assos Assos
|
<?php endif; ?>
|
18 |
|
|
|
19 |
|
|
<?php if (!empty($content)): ?>
|
20 |
bfb52287
|
Assos Assos
|
<div<?php print $content_attributes; ?>><?php print render($content) ?></div>
|
21 |
6c38d829
|
Assos Assos
|
<?php endif; ?>
|
22 |
|
|
|
23 |
|
|
<?php if (!empty($links)): ?>
|
24 |
bfb52287
|
Assos Assos
|
<div class="<?php print $hook ?>-links clearfix"><?php print render($links) ?></div>
|
25 |
6c38d829
|
Assos Assos
|
<?php endif; ?>
|
26 |
|
|
</div>
|
27 |
|
|
|
28 |
|
|
<?php if (!empty($post_object)) print render($post_object) ?> |