panels-dashboard-block.tpl.php 366 B

12345678910111213
  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>