Projet

Général

Profil

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

root / drupal7 / sites / all / modules / advanced_forum / styles / naked / advanced-forum.naked.forum-legend.tpl.php @ c169e7c4

1
<?php
2

    
3
/**
4
 * @file
5
 * Theme implementation to show forum legend.
6
 *
7
 */
8
?>
9

    
10
<div class="forum-list-icon-legend clearfix">
11
  <div class="forum-list-legend-item">
12
    <span class="forum-list-icon-wrapper">
13
      <span class="forum-list-icon-new-posts">
14
      </span>
15
    </span>
16

    
17
    <span class="forum-list-text-legend-new-posts">
18
      <?php print t('New posts'); ?>
19
    </span>
20
  </div>
21

    
22
  <div class="forum-list-legend-item">
23
    <span class="forum-list-icon-wrapper">
24
      <span class="forum-list-icon-default">
25
      </span>
26
    </span>
27

    
28
    <span class="forum-list-text-legend-default">
29
      <?php print t('No new posts'); ?>
30
    </span>
31
  </div>
32
</div>