Revision: 9529
http://sourceforge.net/p/phpwiki/code/9529
Author: vargenau
Date: 2015-02-12 09:52:24 +0000 (Thu, 12 Feb 2015)
Log Message:
-----------
Use real list instead of middot
Modified Paths:
--------------
trunk/themes/blog/templates/navbar.tmpl
Modified: trunk/themes/blog/templates/navbar.tmpl
===================================================================
--- trunk/themes/blog/templates/navbar.tmpl 2015-02-11 17:34:59 UTC (rev 9528)
+++ trunk/themes/blog/templates/navbar.tmpl 2015-02-12 09:52:24 UTC (rev 9529)
@@ -4,15 +4,17 @@
<?php echo _("Navigation") ?>
</div>
<div class="box-data">
+<ul>
<?php if (!empty($revision)) { ?>
-· <?php echo WikiLink(_("BackLinks"), "button",_("BackLinks")) ?>
+<li><?php echo WikiLink(_("BackLinks"), "button",_("BackLinks")) ?></li>
<?php } ?>
<?php if (!empty($user) && $user->isAdmin()) { ?>
-<br />· <?php echo WikiLink(_("PhpWikiAdministration"), "button", _("Admin")) ?>
+<li><?php echo WikiLink(_("PhpWikiAdministration"), "button", _("Admin")) ?></li>
<?php } ?>
<?php if (!empty($user) && $user->isSignedIn()) { ?>
-<br />· <?php echo WikiLink(_("UserPreferences"), "","Preferences") ?>
+<li><?php echo WikiLink(_("UserPreferences"), "","Preferences") ?></li>
<?php } ?>
-<br />·
+</ul>
<?php echo Template("blog/signin") ?>
-</div></div>
+</div>
+</div>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|