You are here

panels-dashboard-block.tpl.php in Panels 6.3

Same filename and directory in other branches
  1. 7.3 templates/panels-dashboard-block.tpl.php

File

templates/panels-dashboard-block.tpl.php
View source
<div class="dashboard-block">
  <h3 class="dashboard-title"><?php

print $block['title'];
?></h3>
  <div class="dashboard-content <?php

print $block['class'];
?>">
    <?php

print $block['content'];
?>
    <?php

if (!empty($block['link'])) {
  ?>
      <div class="links">
        <?php

  print $block['link'];
  ?>
      </div>
    <?php

}
?>
  </div>
</div>