This makes the new endpoints easier-to-find. The navigation is
still at the bottom of the page since I figured having it at the
top is too cluttered for users on small terminals.
$next = $next ? "$next | " : ' | ';
$prev .= qq[ | <a\nhref="$latest">latest</a>];
}
- ($next || $prev) ? "<hr><pre id=nav>page: $next$prev</pre>" : '';
+ my $rv = '<hr><pre id=nav>';
+ $rv .= "page: $next$prev\n" if $next || $prev;
+ $rv .= q{- recent:[<b>subjects (threaded)</b>|<a
+href="./topics_new.html">topics (new)</a>|<a
+href="./topics_active.html">topics (active)</a>]</pre>};
}
sub paginate_recent ($$) {