Projet

Général

Profil

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

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

1
<?php
2

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

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

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

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

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