/[drupal]/contributions/themes/nitobe/forum-topic-navigation.tpl.php
ViewVC logotype

Contents of /contributions/themes/nitobe/forum-topic-navigation.tpl.php

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.2 - (show annotations) (download) (as text)
Wed Feb 11 20:06:29 2009 UTC (9 months, 2 weeks ago) by shannonlucas
Branch: MAIN
CVS Tags: DRUPAL-6--2-6, DRUPAL-6--3-2, DRUPAL-7--1-1, DRUPAL-6--3-1, DRUPAL-6--3-4, HEAD
Branch point for: DRUPAL-6--3, DRUPAL-6--4, DRUPAL-7--1
Changes since 1.1: +17 -4 lines
File MIME type: text/x-php
[#277701] added support for full width content region if no sidebar is present
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; ?>">&laquo;<?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; ?> &raquo;</a>
24 </div>
25 </div> <!-- #forum-navigation -->
26 <div class="clear"></div>

  ViewVC Help
Powered by ViewVC 1.1.2