comparison templates/block.tpl.php @ 0:a3750d724105 default tip

initital
author Dirk Wintergruen <dwinter@mpiwg-berlin.mpg.de>
date Tue, 02 Jun 2015 09:16:36 +0200
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:a3750d724105
1 <?php
2 /**
3 * @file
4 * Returns the HTML for a block.
5 *
6 * Complete documentation for this file is available online.
7 * @see https://drupal.org/node/1728246
8 */
9 ?>
10 <div id="<?php print $block_html_id; ?>" class="<?php print $classes; ?>"<?php print $attributes; ?>>
11
12 <?php print render($title_prefix); ?>
13 <?php if ($title): ?>
14 <h2<?php print $title_attributes; ?>><?php print $title; ?></h2>
15 <?php endif; ?>
16 <?php print render($title_suffix); ?>
17
18 <div class="block-content">
19 <?php print $content; ?>
20 </div>
21 </div>