]>
Commit | Line | Data |
---|---|---|
45034273 SS |
1 | <!DOCTYPE html> |
2 | <html> | |
3 | <head>{include="includes"}</head> | |
4 | <body> | |
5 | <div id="pageheader">{include="page.header"}</div> | |
6 | <div class="daily"> | |
7 | <div class="dailyAbout"> | |
8 | All links of one day<br>in a single page.<br> | |
8079dfd1 A |
9 | {if="$previousday"} <a href="?do=daily&day={$previousday}"><b><</b>Previous day</a>{else}<b><</b>Previous day{/if} |
10 | - | |
11 | {if="$nextday"}<a href="?do=daily&day={$nextday}">Next day<b>></b></a>{else}Next day<b>></b>{/if} | |
45034273 | 12 | <br><br> |
8079dfd1 | 13 | <a href="?do=dailyrss" title="1 RSS entry per day"><img src="images/feed-icon-14x14.png#" alt="rss_feed">Daily RSS Feed</a> |
45034273 | 14 | </div> |
8079dfd1 | 15 | <div class="dailyTitle"><img src="../images/floral_left.png" width="51" height="50" class="nomobile" alt="floral_left"> The Daily Shaarli <img src="../images/floral_right.png" width="51" height="50" class="nomobile" alt="floral_right"></div> |
4de71445 | 16 | <div class="dailyDate"><span class="nomobile">———————————</span> {function="strftime('%A %d, %B %Y', $day)"} <span class="nomobile">———————————</span></div> |
c133612f | 17 | <div class="clear"></div> |
45034273 | 18 | |
cae64e52 FE |
19 | {if="$linksToDisplay"} |
20 | {loop="cols"} | |
21 | {if="isset($value[0])"} | |
22 | <div id="daily_col{$counter+1}"> | |
23 | {loop="value"} | |
24 | {$link=$value} | |
25 | <div class="dailyEntry"> | |
26 | <div class="dailyEntryPermalink"> | |
27 | <a href="?{$link.linkdate|smallHash}"> | |
28 | <img src="../images/squiggle2.png" width="25" height="26" title="permalink" alt="permalink"> | |
29 | </a> | |
30 | </div> | |
38a2d03e V |
31 | {if="!$GLOBALS['config']['HIDE_TIMESTAMPS'] || isLoggedIn()"} |
32 | <div class="dailyEntryLinkdate"> | |
bec18701 | 33 | <a href="?{$link.linkdate|smallHash}">{function="strftime('%c', $link.timestamp)"}</a> |
38a2d03e V |
34 | </div> |
35 | {/if} | |
cae64e52 FE |
36 | {if="$link.tags"} |
37 | <div class="dailyEntryTags"> | |
38 | {loop="link.taglist"} | |
5f85fcd8 | 39 | {$value} - |
cae64e52 FE |
40 | {/loop} |
41 | </div> | |
42 | {/if} | |
43 | <div class="dailyEntryTitle"> | |
5f85fcd8 | 44 | <a href="{$link.url}">{$link.title}</a> |
cae64e52 FE |
45 | </div> |
46 | {if="$link.thumbnail"} | |
47 | <div class="dailyEntryThumbnail">{$link.thumbnail}</div> | |
48 | {/if} | |
49 | <div class="dailyEntryDescription">{$link.formatedDescription}</div> | |
50 | </div> | |
51 | {/loop} | |
52 | </div> | |
53 | {/if} | |
45034273 | 54 | {/loop} |
45034273 | 55 | {else} |
c133612f | 56 | <div class="dailyNoEntry">No articles on this day.</div> |
45034273 | 57 | {/if} |
c133612f | 58 | <div id="closing"><img src="../images/squiggle_closing.png" width="66" height="61" alt="-"></div> |
45034273 SS |
59 | </div> |
60 | {include="page.footer"} | |
61 | </body> | |
c133612f | 62 | </html> |