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/daily.html | |
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/daily.html')
-rw-r--r-- | tpl/daily.html | 8 |
1 files changed, 5 insertions, 3 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 | ||