| 1 |
<?php
|
| 2 |
/**
|
| 3 |
* $Id: forum-topic-navigation.tpl.php,v 1.1 2008/12/31 22:23:01 shannonlucas Exp $
|
| 4 |
* @file forum-topic-navigation.tpl.php
|
| 5 |
* Renders the forum topic navigation for Nitobe.
|
| 6 |
*/
|
| 7 |
|
| 8 |
if ($nitobe_has_sidebar) {
|
| 9 |
$forum_nav_wrap = "grid_12 alpha omega";
|
| 10 |
$forum_nav_class = "grid_6";
|
| 11 |
}
|
| 12 |
else {
|
| 13 |
$forum_nav_wrap = "grid_16 alpha omega";
|
| 14 |
$forum_nav_class = "grid_8";
|
| 15 |
}
|
| 16 |
?>
|
| 17 |
<div class="clear"></div>
|
| 18 |
<div id="forum-navigation" class="<?php print $forum_nav_wrap; ?>">
|
| 19 |
<div id="forum-nav-prev" class="<?php print $forum_nav_class; ?> alpha">
|
| 20 |
<a href="<?php print $prev_url; ?>" title="Previous topic: <?php print $prev_title; ?>">«<?php print $prev_title; ?></a>
|
| 21 |
</div>
|
| 22 |
<div id="forum-nav-next" class="<?php print $forum_nav_class; ?> omega">
|
| 23 |
<a href="<?php print $next_url; ?>" title="Next topic: <?php print $next_title; ?>"><?php print $next_title; ?> »</a>
|
| 24 |
</div>
|
| 25 |
</div> <!-- #forum-navigation -->
|
| 26 |
<div class="clear"></div>
|