818b3193ff
With the new routes, all pages are not all at the same folder level anymore (e.g. /shaare and /shaare/123), so we can't just use './' everywhere. The most consistent way to handle this is to prefix all path with the proper variable, and handle the actual path in controllers.
59 lines
1.8 KiB
HTML
59 lines
1.8 KiB
HTML
|
|
<div id="logo" title="Share your links !" onclick="document.location='{$titleLink}';"></div>
|
|
|
|
<div id="linkcount" class="nomobile">
|
|
{if="!empty($linkcount)"}{$linkcount} links{/if}<br>
|
|
{if="!empty($privateLinkcount)"}{$privateLinkcount} private links{/if}
|
|
</div>
|
|
|
|
<div id="menu">
|
|
<ul>
|
|
<li><span id="shaarli_title">
|
|
<a href="{$titleLink}">{$shaarlititle}</a>
|
|
</span>
|
|
</li>
|
|
|
|
{if="!empty($_GET['source']) && $_GET['source']=='bookmarklet'"}
|
|
{ignore} When called as a popup from bookmarklet, do not display menu. {/ignore}
|
|
{else}
|
|
<li><a href="{$titleLink}" class="nomobile">Home</a></li>
|
|
{if="$is_logged_in"}
|
|
<li><a href="{$base_path}/logout">Logout</a></li>
|
|
<li><a href="{$base_path}/tools">Tools</a></li>
|
|
<li><a href="{$base_path}/add-shaare">Add link</a></li>
|
|
{elseif="$openshaarli"}
|
|
<li><a href="{$base_path}/tools">Tools</a></li>
|
|
<li><a href="{$base_path}/add-shaare">Add link</a></li>
|
|
{else}
|
|
<li><a href="{$base_path}/login">Login</a></li>
|
|
{/if}
|
|
<li><a href="{$feedurl}/feed-rss?{$searchcrits}" class="nomobile">RSS Feed</a></li>
|
|
{if="$showatom"}
|
|
<li><a href="{$feedurl}/feed-atom?{$searchcrits}" class="nomobile">ATOM Feed</a></li>
|
|
{/if}
|
|
<li><a href="{$base_path}/tag-cloud">Tag cloud</a></li>
|
|
<li><a href="{$base_path}/picture-wall{function="ltrim($searchcrits, '&')"}">Picture wall</a></li>
|
|
<li><a href="{$base_path}/daily">Daily</a></li>
|
|
{loop="$plugins_header.buttons_toolbar"}
|
|
<li><a
|
|
{loop="$value.attr"}
|
|
{$key}="{$value}"
|
|
{/loop}>
|
|
{$value.html}
|
|
</a></li>
|
|
{/loop}
|
|
{/if}
|
|
</ul>
|
|
</div>
|
|
|
|
{if="!empty($plugin_errors) && $is_logged_in"}
|
|
<ul class="errors">
|
|
{loop="$plugin_errors"}
|
|
<li>{$value}</li>
|
|
{/loop}
|
|
</ul>
|
|
{/if}
|
|
|
|
<div class="clear"></div>
|
|
|
|
|