Projet

Général

Profil

Paste
Télécharger (1,02 ko) Statistiques
| Branche: | Révision:

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

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 (!$page && !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
      <a href="<?php print $node_url ?>"><?php print $title ?></a>
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 ?>>
21 6c38d829 Assos Assos
      <?php print render($content) ?>
22
    </div>
23
  <?php endif; ?>
24
25
  <?php if (!empty($links)): ?>
26 bfb52287 Assos Assos
    <div class="<?php print $hook ?>-links clearfix">
27 6c38d829 Assos Assos
      <?php print render($links) ?>
28
    </div>
29
  <?php endif; ?>
30
</div>
31
32
<?php if (!empty($post_object)) print render($post_object) ?>