Parent Directory
|
Revision Log
|
Revision Graph
Add template nodeasblock.tpl.php.
| 1 | <?php |
| 2 | // $Id: nodeasblock.tpl.php,v 1.1.2.1 2009/08/20 04:12:14 herc Exp $ |
| 3 | |
| 4 | /** |
| 5 | * @file nodeasblock.tpl.php |
| 6 | * Default theme implementation for rendering a single node as a block. |
| 7 | * |
| 8 | * Available variables: |
| 9 | * - $content: Node content rendered. |
| 10 | * - $edit_link: Node edit link. |
| 11 | * |
| 12 | * @see template_preprocess_nodeasblock() |
| 13 | */ |
| 14 | ?> |
| 15 | <?php print $content; ?> |
| 16 | <?php if ($edit_link): ?> |
| 17 | <div class="nodeasblock-edit-link"><?php print $edit_link ?></div> |
| 18 | <?php endif; ?> |
| ViewVC Help | |
| Powered by ViewVC 1.1.2 |