Projet

Général

Profil

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

root / drupal7 / sites / all / themes / zen / templates / panels-pane.tpl.php @ 87dbc3bf

1
<?php
2
/**
3
 * @file
4
 * Returns the HTML for a Panels pane.
5
 *
6
 * Complete documentation for this file is available online.
7
 * @see https://drupal.org/node/2052505
8
 */
9
?>
10
<?php print $pane_prefix; ?>
11
<div class="<?php print $classes; ?>" <?php print $id; ?>>
12
  <?php print $admin_links; ?>
13

    
14
  <?php print render($title_prefix); ?>
15
  <?php if ($title): ?>
16
    <h2<?php print $title_attributes; ?>><?php print $title; ?></h2>
17
  <?php endif; ?>
18
  <?php print render($title_suffix); ?>
19

    
20
  <?php if ($feeds): ?>
21
    <div class="feed">
22
      <?php print $feeds; ?>
23
    </div>
24
  <?php endif; ?>
25

    
26
  <?php print render($content); ?>
27

    
28
  <?php if ($links): ?>
29
    <div class="links">
30
      <?php print $links; ?>
31
    </div>
32
  <?php endif; ?>
33

    
34
  <?php if ($more): ?>
35
    <div class="more-link">
36
      <?php print $more; ?>
37
    </div>
38
  <?php endif; ?>
39
</div>
40
<?php print $pane_suffix; ?>