diff options
author | Seb Sauvage <sebsauvage@sebsauvage.net> | 2012-02-06 17:35:44 +0100 |
---|---|---|
committer | Emilien Klein <emilien@klein.st> | 2012-02-06 17:35:44 +0100 |
commit | a689efafc8260f53ed67fbe5d67e013ea41c3923 (patch) | |
tree | 59c73f7935879c77cdf59d38a0e02db643583250 /tpl | |
parent | a22e60cc0abb0547af8d792dec15f59bf77b5630 (diff) | |
download | Shaarli-legacy.tar.gz Shaarli-legacy.tar.zst Shaarli-legacy.zip |
Version 0.0.38 beta:legacy
- Corrected: Corrected the tag encoding (there was a bug when selecting a second tag which contains accented characters).
- Changed: The “Daily” page now automatically skips empty days.
- Added: Automatic creation of the tmp directory with proper rights (for RainTPL).
- Added: When you click the key to see only private links, it turns yellow.
Diffstat (limited to 'tpl')
-rw-r--r-- | tpl/daily.html | 8 | ||||
-rw-r--r-- | tpl/linklist.paging.html | 8 |
2 files changed, 12 insertions, 4 deletions
diff --git a/tpl/daily.html b/tpl/daily.html index bdaf2032..4bc8568b 100644 --- a/tpl/daily.html +++ b/tpl/daily.html | |||
@@ -6,11 +6,13 @@ | |||
6 | <div class="daily"> | 6 | <div class="daily"> |
7 | <div class="dailyAbout"> | 7 | <div class="dailyAbout"> |
8 | All links of one day<br>in a single page.<br> | 8 | All links of one day<br>in a single page.<br> |
9 | <a href="?do=daily&day={$previousday}"><b><</b>Previous day</a> - | 9 | {if="$previousday"} <a href="?do=daily&day={$previousday}"><b><</b>Previous day</a>{else}<b><</b>Previous day{/if} |
10 | <a href="?do=daily&day={$nextday}">Next day<b>></b></a><br><br> | 10 | - |
11 | {if="$nextday"}<a href="?do=daily&day={$nextday}">Next day<b>></b></a>{else}Next day<b>></b>{/if} | ||
12 | <br><br> | ||
11 | <a href="?do=dailyrss" title="1 RSS entry per day"><img src="images/feed-icon-14x14.png#" width="14" height="14" style="position:relative;top:3px; margin-right:4px;">Daily RSS Feed</a> | 13 | <a href="?do=dailyrss" title="1 RSS entry per day"><img src="images/feed-icon-14x14.png#" width="14" height="14" style="position:relative;top:3px; margin-right:4px;">Daily RSS Feed</a> |
12 | </div> | 14 | </div> |
13 | <div class="dailyTitle"><img src="../images/floral_left.png" width="51" height="50" class="nomobile"> The Shaarli Daily <img src="../images/floral_right.png" width="51" height="50" class="nomobile"></div> | 15 | <div class="dailyTitle"><img src="../images/floral_left.png" width="51" height="50" class="nomobile"> The Daily Shaarli <img src="../images/floral_right.png" width="51" height="50" class="nomobile"></div> |
14 | <div class="dailyDate"><span class="nomobile">———————————</span> {$day} <span class="nomobile">———————————</span></div> | 16 | <div class="dailyDate"><span class="nomobile">———————————</span> {$day} <span class="nomobile">———————————</span></div> |
15 | <div style="clear:both;"></div> | 17 | <div style="clear:both;"></div> |
16 | 18 | ||
diff --git a/tpl/linklist.paging.html b/tpl/linklist.paging.html index b1f9871f..b0c119d9 100644 --- a/tpl/linklist.paging.html +++ b/tpl/linklist.paging.html | |||
@@ -1,7 +1,13 @@ | |||
1 | <div class="paging"> | 1 | <div class="paging"> |
2 | {if="isLoggedIn()"} | 2 | {if="isLoggedIn()"} |
3 | <div id="paging_privatelinks"> | 3 | <div id="paging_privatelinks"> |
4 | <a href="?privateonly"><img src="images/private_16x16.png#" width="16" height="16" title="See private links only (toggle)" alt="See private links only (toggle)"></a> | 4 | <a href="?privateonly"> |
5 | {if="$privateonly"} | ||
6 | <img src="images/private_16x16_active.png#" width="16" height="16" title="Click to see all links" alt="Click to see all links"> | ||
7 | {else} | ||
8 | <img src="images/private_16x16.png#" width="16" height="16" title="Click to see only private links" alt="Click to see only private links"> | ||
9 | {/if} | ||
10 | </a> | ||
5 | </div> | 11 | </div> |
6 | {/if} | 12 | {/if} |
7 | <div id="paging_linksperpage"> | 13 | <div id="paging_linksperpage"> |