diff options
author | Arthur <arthur@hoa.ro> | 2015-11-08 13:29:32 +0100 |
---|---|---|
committer | Arthur <arthur@hoa.ro> | 2015-11-08 13:29:32 +0100 |
commit | fd006c630b64146edc402b68d8503c716f8a55d6 (patch) | |
tree | e53904cc6232c7f2fe8e1de6f23c9a5d6c5403ad /tpl/page.header.html | |
parent | 70df947af60afb05529024bb2d3825eaf6cc7950 (diff) | |
parent | 056107ab4eae0a4867cf8d55de77d31f8868b899 (diff) | |
download | Shaarli-fd006c630b64146edc402b68d8503c716f8a55d6.tar.gz Shaarli-fd006c630b64146edc402b68d8503c716f8a55d6.tar.zst Shaarli-fd006c630b64146edc402b68d8503c716f8a55d6.zip |
Merge pull request #275 from shaarli/plugin-proposition
Plugin proposition
Diffstat (limited to 'tpl/page.header.html')
-rw-r--r-- | tpl/page.header.html | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/tpl/page.header.html b/tpl/page.header.html index 2d186aa2..52429f23 100644 --- a/tpl/page.header.html +++ b/tpl/page.header.html | |||
@@ -11,7 +11,7 @@ | |||
11 | <a href="{$titleLink}">{$shaarlititle}</a> | 11 | <a href="{$titleLink}">{$shaarlititle}</a> |
12 | </span> | 12 | </span> |
13 | </li> | 13 | </li> |
14 | 14 | ||
15 | {if="!empty($_GET['source']) && $_GET['source']=='bookmarklet'"} | 15 | {if="!empty($_GET['source']) && $_GET['source']=='bookmarklet'"} |
16 | {ignore} When called as a popup from bookmarklet, do not display menu. {/ignore} | 16 | {ignore} When called as a popup from bookmarklet, do not display menu. {/ignore} |
17 | {else} | 17 | {else} |
@@ -33,10 +33,20 @@ | |||
33 | <li><a href="?do=tagcloud">Tag cloud</a></li> | 33 | <li><a href="?do=tagcloud">Tag cloud</a></li> |
34 | <li><a href="?do=picwall{$searchcrits}">Picture wall</a></li> | 34 | <li><a href="?do=picwall{$searchcrits}">Picture wall</a></li> |
35 | <li><a href="?do=daily">Daily</a></li> | 35 | <li><a href="?do=daily">Daily</a></li> |
36 | {loop="$plugins_header.buttons_toolbar"} | ||
37 | {$value} | ||
38 | {/loop} | ||
36 | {/if} | 39 | {/if} |
37 | </ul> | 40 | </ul> |
38 | </div> | 41 | </div> |
39 | 42 | ||
43 | {if="!empty($plugin_errors) && isLoggedIn()"} | ||
44 | <ul class="errors"> | ||
45 | {loop="plugin_errors"} | ||
46 | <li>{$value}</li> | ||
47 | {/loop} | ||
48 | </ul> | ||
49 | {/if} | ||
40 | 50 | ||
41 | <div class="clear"></div> | 51 | <div class="clear"></div> |
42 | 52 | ||