Projet

Général

Profil

Paste
Télécharger (1,3 ko) Statistiques
| Branche: | Révision:

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

1
<?php
2
// $Id: block.tpl.php,v 1.1.2.1 2011/01/23 05:03:51 antsin Exp $
3

    
4
/*
5
+----------------------------------------------------------------+
6
|   BlogBuzz for Dupal 7.x - Version 1.0                         |
7
|   Copyright (C) 2011 Antsin.com All Rights Reserved.           |
8
|   @license - GNU GENERAL PUBLIC LICENSE                        |
9
|----------------------------------------------------------------|
10
|   Theme Name: BlogBuzz                                         |
11
|   Description: BlogBuzz by Antsin                              |
12
|   Author: Antsin.com                                           |
13
|   Website: http://www.antsin.com/                              |
14
|----------------------------------------------------------------+
15
*/  
16
?>
17

    
18
<?php if ($block->region =='primary_menu' || $block->region =='content'): ?>
19
  <?php print $content; ?>
20
<?php else: ?>
21
  <div id="block-<?php print $block->module . '-' . $block->delta; ?>" class="<?php print $classes; ?>"<?php print $attributes; ?>>
22
    <div class="block-inner clearfix">
23
      <?php if ($block->subject): ?><div class="title"><h2><?php print $block->subject ?></h2></div><?php endif; ?>
24
      <div class="content"<?php print $content_attributes; ?>>
25
        <?php print $content; ?>
26
      </div>
27
    </div>
28
  </div> <!-- /block-inner, /block -->
29
<?php endif; ?>