Projet

Général

Profil

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

root / drupal7 / sites / all / modules / panels / templates / panels-dashboard-block.tpl.php @ 64156087

1
<?php
2

    
3
/**
4
 * @file
5
 */
6
?>
7
<div class="dashboard-block">
8
  <h3 class="dashboard-title"><?php print $block['title']; ?></h3>
9
  <div class="dashboard-content <?php print $block['class']; ?>">
10
    <?php print $block['content']; ?>
11
    <?php if (!empty($block['link'])): ?>
12
      <div class="links">
13
        <?php print $block['link']; ?>
14
      </div>
15
    <?php endif; ?>
16
  </div>
17
</div>