toc.tpl.php in Pagination (Node) 6
File
toc.tpl.phpView source
<?php
/**
* Available variables
* -------------------
*
* $pages - a themed list (item-list) of page headers
* which defaults to Page x if no custom header
* is supplied
* $title - the page title
* $toc - the string 'Table of Contents:'
*/
?>
<div id="pagination-toc">
<?php
if ($toc) {
?>
<h4><?php
print $toc;
?></h4>
<?php
}
?>
<?php
print $pages;
?>
</div>