diff options
author | Emilien Klein <emilien@klein.st> | 2014-10-23 20:05:13 +0200 |
---|---|---|
committer | Emilien Klein <emilien@klein.st> | 2014-10-23 20:05:13 +0200 |
commit | a4355279cb60e3fee7e87b2ffffd3f4c6465b9f4 (patch) | |
tree | 534e2e70620408d2b49a61e808f90198303e2f70 /tpl | |
parent | 57dbbe51a613b31f84071a22897857b81cd9e2ec (diff) | |
parent | 1099d8fcad1844599a365fc03506ca69d156609f (diff) | |
download | Shaarli-a4355279cb60e3fee7e87b2ffffd3f4c6465b9f4.tar.gz Shaarli-a4355279cb60e3fee7e87b2ffffd3f4c6465b9f4.tar.zst Shaarli-a4355279cb60e3fee7e87b2ffffd3f4c6465b9f4.zip |
Merge pull request #35 from nodiscc/optional-atom
Make ATOM toolbar button optional
Diffstat (limited to 'tpl')
-rw-r--r-- | tpl/page.header.html | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tpl/page.header.html b/tpl/page.header.html index 37a18f70..654a551d 100644 --- a/tpl/page.header.html +++ b/tpl/page.header.html | |||
@@ -16,7 +16,9 @@ | |||
16 | <a href="?do=login">Login</a> | 16 | <a href="?do=login">Login</a> |
17 | {/if} | 17 | {/if} |
18 | <a href="{$feedurl}?do=rss{$searchcrits}" class="nomobile">RSS Feed</a> | 18 | <a href="{$feedurl}?do=rss{$searchcrits}" class="nomobile">RSS Feed</a> |
19 | <a href="{$feedurl}?do=atom{$searchcrits}" style="padding-left:10px;" class="nomobile">ATOM Feed</a> | 19 | {if="$GLOBALS['config']['SHOW_ATOM']"} |
20 | <a href="{$feedurl}?do=atom{$searchcrits}" style="padding-left:10px;" class="nomobile">ATOM Feed</a> | ||
21 | {/if} | ||
20 | <a href="?do=tagcloud">Tag cloud</a> | 22 | <a href="?do=tagcloud">Tag cloud</a> |
21 | <a href="?do=picwall{$searchcrits}">Picture wall</a> | 23 | <a href="?do=picwall{$searchcrits}">Picture wall</a> |
22 | <a href="?do=daily">Daily</a> | 24 | <a href="?do=daily">Daily</a> |