some style adjustments for the sidebar

There is no need to differentiate between site tools and the navigation
anymore. Instead now it's differentiated between the navigation tools
and the displayed content.
This commit is contained in:
Andreas Gohr 2017-02-16 15:10:50 +01:00
commit 83e6372c7d
6 changed files with 162 additions and 489 deletions

View file

@ -61,7 +61,7 @@
$crumbs = array_reverse($crumbs, true);
foreach($crumbs as $id => $name) {
echo '<li>';
tpl_link(wl($id), hsc($name), 'class="breadcrumbs" title="' . $id . '"');
tpl_link(wl($id), hsc($name), 'title="' . $id . '"');
echo '</li>';
}
?>