]> git.immae.eu Git - github/shaarli/Shaarli.git/blame - tpl/vintage/daily.html
Vintage theme: fix routes in daily page
[github/shaarli/Shaarli.git] / tpl / vintage / daily.html
CommitLineData
45034273
SS
1<!DOCTYPE html>
2<html>
3<head>{include="includes"}</head>
4<body>
567967fd
A
5<div id="pageheader">
6 {include="page.header"}
7</div>
45034273 8<div class="daily">
567967fd
A
9 <div id="plugin_zone_start_picwall" class="plugin_zone">
10 {loop="$plugin_start_zone"}
11 {$value}
12 {/loop}
13 </div>
14
45034273 15 <div class="dailyAbout">
567967fd 16 All links of one day<br>in a single page.<br>
85c09fe3 17 {if="$previousday"} <a href="{$base_path}/daily?day={$previousday}"><b>&lt;</b>Previous day</a>{else}<b>&lt;</b>Previous day{/if}
567967fd 18 -
85c09fe3 19 {if="$nextday"}<a href="{$base_path}/daily?day={$nextday}">Next day<b>&gt;</b></a>{else}Next day<b>&gt;</b>{/if}
567967fd
A
20 <br>
21
22 {loop="$daily_about_plugin"}
23 {$value}
24 {/loop}
25
26 <br>
818b3193 27 <a href="{$base_path}/daily-rss" title="1 RSS entry per day"><img src="{$asset_path}/img/feed-icon-14x14.png#" alt="rss_feed">Daily RSS Feed</a>
45034273 28 </div>
567967fd
A
29
30 <div class="dailyTitle">
818b3193 31 <img src="{$asset_path}/img/floral_left.png#" width="51" height="50" class="nomobile" alt="floral_left">
567967fd 32 The Daily Shaarli
818b3193 33 <img src="{$asset_path}/img/floral_right.png#" width="51" height="50" class="nomobile" alt="floral_right">
567967fd
A
34 </div>
35
36 <div class="dailyDate">
37 <span class="nomobile">&mdash;&mdash;&mdash;&mdash;&mdash;&mdash;&mdash;&mdash;&mdash;&mdash;&mdash;</span>
5321f704
A
38 {if="!empty($dayDesc)"}
39 {$dayDesc} -
40 {/if}
567967fd
A
41 {function="strftime('%A %d, %B %Y', $day)"}
42 <span class="nomobile">&mdash;&mdash;&mdash;&mdash;&mdash;&mdash;&mdash;&mdash;&mdash;&mdash;&mdash;</span>
43 </div>
44
c133612f 45 <div class="clear"></div>
45034273 46
cae64e52 47 {if="$linksToDisplay"}
dec5fe9c 48 {loop="$cols"}
cae64e52
FE
49 {if="isset($value[0])"}
50 <div id="daily_col{$counter+1}">
dec5fe9c 51 {loop="$value"}
cae64e52
FE
52 {$link=$value}
53 <div class="dailyEntry">
54 <div class="dailyEntryPermalink">
85c09fe3 55 <a href="{$base_path}/shaare/{$value.shorturl}">
818b3193 56 <img src="{$asset_path}/img/squiggle.png#" width="25" height="26" title="permalink" alt="permalink">
cae64e52
FE
57 </a>
58 </div>
89ccc83b 59 {if="!$hide_timestamps || $is_logged_in"}
38a2d03e 60 <div class="dailyEntryLinkdate">
85c09fe3 61 <a href="{$base_path}/shaare/{$value.shorturl}">{function="strftime('%c', $link.timestamp)"}</a>
38a2d03e
V
62 </div>
63 {/if}
cae64e52
FE
64 {if="$link.tags"}
65 <div class="dailyEntryTags">
dec5fe9c 66 {loop="$link.taglist"}
5f85fcd8 67 {$value} -
cae64e52
FE
68 {/loop}
69 </div>
70 {/if}
71 <div class="dailyEntryTitle">
90e5bd65 72 <a href="{$link.real_url}">{$link.title}</a>
cae64e52 73 </div>
bf3c9934
A
74 {if="$thumbnails_enabled && !empty($link.thumbnail)"}
75 <div class="dailyEntryThumbnail">
76 <img data-src="{$link.thumbnail}#" class="b-lazy"
8c75c43e 77 src=""
bf3c9934
A
78 alt="thumbnail" width="{$thumbnails_width}" height="{$thumbnails_height}" />
79 </div>
cae64e52
FE
80 {/if}
81 <div class="dailyEntryDescription">{$link.formatedDescription}</div>
567967fd
A
82
83 <div class="dailyEntryFooter">
84 {loop="$link.link_plugin"}
85 {$value}
86 {/loop}
87 </div>
cae64e52
FE
88 </div>
89 {/loop}
90 </div>
91 {/if}
45034273 92 {/loop}
45034273 93 {else}
c133612f 94 <div class="dailyNoEntry">No articles on this day.</div>
45034273 95 {/if}
567967fd
A
96
97 <div class="clear"></div>
98
99 <div id="plugin_zone_end_picwall" class="plugin_zone">
100 {loop="$plugin_end_zone"}
101 {$value}
102 {/loop}
103 </div>
818b3193 104 <div id="closing"><img src="{$asset_path}/img/squiggle_closing.png#" width="66" height="61" alt="-"></div>
45034273
SS
105</div>
106{include="page.footer"}
818b3193 107<script src="{$asset_path}/js/thumbnails.min.js?v={$version_hash}#"></script>
45034273 108</body>
c133612f 109</html>