panels-dashboard-block.tpl.php 384 B

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