Example #1
0
<?php

if ($content['pages']['earlier-href'] and $content['pages']['earlier-title']) {
    ?>
<section class="pages up">
	<span class="keyboard-shortcut"><?php 
    echo _SHORTCUT('navigation-earlier');
    ?>
</span><a href="<?php 
    echo $content['pages']['earlier-href'];
    ?>
"><?php 
    echo $content['pages']['earlier-title'];
    ?>
</a>
</section>
<?php 
}
Example #2
0
<?php

if ($content['pages']['later-href'] and $content['pages']['later-title']) {
    ?>
<section class="pages down">
	<span class="keyboard-shortcut"><?php 
    echo _SHORTCUT('navigation-later');
    ?>
</span><a href="<?php 
    echo $content['pages']['later-href'];
    ?>
"><?php 
    echo $content['pages']['later-title'];
    ?>
</a>
</section>
<?php 
}