Projet

Général

Profil

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

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

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