Projet

Général

Profil

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

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

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

    
4
    <?php print $unpublished; ?>
5

    
6
    <?php print render($title_prefix); ?>
7
    <?php if ($title || $display_submitted): ?>
8
      <header<?php print $header_attributes; ?>>
9

    
10
        <?php if ($title && !$page): ?>
11
          <h1<?php print $title_attributes; ?>>
12
              <a href="<?php print $node_url; ?>" rel="bookmark"><?php print $title; ?></a>
13
          </h1>
14
        <?php endif; ?>
15

    
16
        <?php if ($display_submitted): ?>
17
          <p class="submitted"><?php print $submitted; ?></p>
18
        <?php endif; ?>
19

    
20
      </header>
21
    <?php endif; ?>
22
    <?php print render($title_suffix); ?>
23

    
24
    <div<?php print $content_attributes; ?>>
25
    <?php print $user_picture; ?>
26
    <?php
27
      hide($content['comments']);
28
      hide($content['links']);
29
      print render($content);
30
    ?>
31
    </div>
32

    
33
    <?php if ($links = render($content['links'])): ?>
34
      <nav<?php print $links_attributes; ?>><?php print $links; ?></nav>
35
    <?php endif; ?>
36

    
37
    <?php print render($content['comments']); ?>
38

    
39
  </div>
40
</article>