Projet

Général

Profil

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

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

1 87dbc3bf Benjamin Luce
<?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 7e072189 Assos Assos
<div class="<?php print $classes; ?>" <?php print $id; ?> <?php print $attributes; ?>>
12 87dbc3bf Benjamin Luce
  <?php print $admin_links; ?>
13
14
  <?php print render($title_prefix); ?>
15
  <?php if ($title): ?>
16 7e072189 Assos Assos
    <<?php print $title_heading; ?><?php print $title_attributes; ?>>
17
      <?php print $title; ?>
18
    </<?php print $title_heading; ?>>
19 87dbc3bf Benjamin Luce
  <?php endif; ?>
20
  <?php print render($title_suffix); ?>
21
22
  <?php if ($feeds): ?>
23
    <div class="feed">
24
      <?php print $feeds; ?>
25
    </div>
26
  <?php endif; ?>
27
28
  <?php print render($content); ?>
29
30
  <?php if ($links): ?>
31
    <div class="links">
32
      <?php print $links; ?>
33
    </div>
34
  <?php endif; ?>
35
36
  <?php if ($more): ?>
37
    <div class="more-link">
38
      <?php print $more; ?>
39
    </div>
40
  <?php endif; ?>
41
</div>
42
<?php print $pane_suffix; ?>