Projet

Général

Profil

Paste
Télécharger (503 octets) Statistiques
| Branche: | Révision:

root / drupal7 / sites / all / themes / journalcrunch / block.tpl.php @ 87dbc3bf

1
<div id="<?php print $block_html_id; ?>" class="<?php print $classes; ?>"<?php print $attributes; ?>>
2
    <div class="blockInner">
3
                <?php print render($title_prefix); ?>
4
        <?php if ($block->subject): ?>
5
        <h2<?php print $title_attributes; ?>><?php print $block->subject ?></h2>
6
        <?php endif;?>
7
        <?php print render($title_suffix); ?>
8
        
9
        <div class="content"<?php print $content_attributes; ?>>
10
            <?php print $content ?>
11
        </div>
12
    </div>
13
</div>