| 1 |
<?php |
<?php |
| 2 |
// $Id:$ |
// $Id: dashboard-widget.tpl.php,v 1.1 2009/04/13 19:39:34 agentken Exp $ |
| 3 |
|
|
| 4 |
/** |
/** |
| 5 |
* @file |
* @file |
| 7 |
*/ |
*/ |
| 8 |
?> |
?> |
| 9 |
|
|
| 10 |
<div id="widget-<?php print $widget['widget_id'] ?>" class="widget grid-4 alpha omega"> |
<div id="widget-<?php print $widget->widget_id ?>" class="widget grid-4 alpha omega"> |
| 11 |
<div class="tools"><a href="#" class="remove-widget" title="<?php print t('Remove') ?>"></a></div> |
<div class="tools"><a href="#" class="remove-widget" title="<?php print t('Remove') ?>"></a></div> |
| 12 |
<h2><?php print $widget['title']; ?></h2> |
<h2><?php print $widget->subject; ?></h2> |
| 13 |
<div class="content"> |
<div class="content"> |
| 14 |
<?php print $widget['content']; ?> |
<?php print $widget->content; ?> |
| 15 |
</div> |
</div> |
| 16 |
</div> |
</div> |