Projet

Général

Profil

Paste
Télécharger (972 octets) Statistiques
| Branche: | Révision:

root / drupal7 / sites / all / themes / tao / templates / object.tpl.php @ eefc2ac0

1
<?php if (!empty($pre_object)) print render($pre_object) ?>
2

    
3
<div<?php print $attributes ?>>
4
  <?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
      <?php if (!empty($new)): ?><span class="new"><?php print $new ?></span><?php endif; ?>
9
      <?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
    <div class="<?php print $hook ?>-submitted clearfix"><?php print $submitted ?></div>
17
  <?php endif; ?>
18

    
19
  <?php if (!empty($content)): ?>
20
    <div<?php print $content_attributes; ?>><?php print render($content) ?></div>
21
  <?php endif; ?>
22

    
23
  <?php if (!empty($links)): ?>
24
    <div class="<?php print $hook ?>-links clearfix"><?php print render($links) ?></div>
25
  <?php endif; ?>
26
</div>
27

    
28
<?php if (!empty($post_object)) print render($post_object) ?>