Projet

Général

Profil

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

root / drupal7 / sites / all / themes / corporateclean / node.tpl.php @ 87dbc3bf

1
<div id="node-<?php print $node->nid; ?>" class="<?php print $classes; ?>"<?php print $attributes; ?>>
2

    
3
  <?php print $user_picture; ?>
4

    
5
  <?php print render($title_prefix); ?>
6
  <?php if (!$page): ?>
7
    <h2<?php print $title_attributes; ?>><a href="<?php print $node_url; ?>"><?php print $title; ?></a></h2>
8
  <?php endif; ?>
9
  <?php print render($title_suffix); ?>
10

    
11
  <?php if ($display_submitted): ?>
12
    <div class="submitted"><?php print $submitted ?></div>
13
  <?php endif; ?>
14

    
15
  <div class="content clearfix"<?php print $content_attributes; ?>>
16
    <?php
17
      // We hide the comments and links now so that we can render them later.
18
      hide($content['comments']);
19
      hide($content['links']);
20
      print render($content);
21
    ?>
22
  </div>
23

    
24
  <div class="clearfix">
25
    <?php if (!empty($content['links'])): ?>
26
      <div class="links"><?php print render($content['links']); ?></div>
27
    <?php endif; ?>
28

    
29
    <?php print render($content['comments']); ?>
30
  </div>
31

    
32
</div>