You are here

advanced_forum.naked.forum-legend.tpl.php in Advanced Forum 6.2

Theme implementation to show forum legend.

File

styles/naked/advanced_forum.naked.forum-legend.tpl.php
View source
<?php

/**
 * @file
 * Theme implementation to show forum legend.
 *
 */
?>

<div class="forum-list-icon-legend clear-block">
  <div class="forum-list-legend-item">
    <span class="forum-list-icon-wrapper">
      <span class="forum-list-icon-new-posts">
      </span>
    </span>

    <span class="forum-list-text-legend-new-posts">
      <?php

print t('New posts');
?>
    </span>
  </div>

  <div class="forum-list-legend-item">
    <span class="forum-list-icon-wrapper">
      <span class="forum-list-icon-default">
      </span>
    </span>

    <span class="forum-list-text-legend-default">
      <?php

print t('No new posts');
?>
    </span>
  </div>
</div>