diff options
author | Arthur <arthur@hoa.ro> | 2015-11-08 13:29:32 +0100 |
---|---|---|
committer | Arthur <arthur@hoa.ro> | 2015-11-08 13:29:32 +0100 |
commit | fd006c630b64146edc402b68d8503c716f8a55d6 (patch) | |
tree | e53904cc6232c7f2fe8e1de6f23c9a5d6c5403ad /tpl/daily.html | |
parent | 70df947af60afb05529024bb2d3825eaf6cc7950 (diff) | |
parent | 056107ab4eae0a4867cf8d55de77d31f8868b899 (diff) | |
download | Shaarli-fd006c630b64146edc402b68d8503c716f8a55d6.tar.gz Shaarli-fd006c630b64146edc402b68d8503c716f8a55d6.tar.zst Shaarli-fd006c630b64146edc402b68d8503c716f8a55d6.zip |
Merge pull request #275 from shaarli/plugin-proposition
Plugin proposition
Diffstat (limited to 'tpl/daily.html')
-rw-r--r-- | tpl/daily.html | 57 |
1 files changed, 48 insertions, 9 deletions
diff --git a/tpl/daily.html b/tpl/daily.html index 38aa4012..93a3ab45 100644 --- a/tpl/daily.html +++ b/tpl/daily.html | |||
@@ -2,18 +2,43 @@ | |||
2 | <html> | 2 | <html> |
3 | <head>{include="includes"}</head> | 3 | <head>{include="includes"}</head> |
4 | <body> | 4 | <body> |
5 | <div id="pageheader">{include="page.header"}</div> | 5 | <div id="pageheader"> |
6 | {include="page.header"} | ||
7 | </div> | ||
6 | <div class="daily"> | 8 | <div class="daily"> |
9 | <div id="plugin_zone_start_picwall" class="plugin_zone"> | ||
10 | {loop="$plugin_start_zone"} | ||
11 | {$value} | ||
12 | {/loop} | ||
13 | </div> | ||
14 | |||
7 | <div class="dailyAbout"> | 15 | <div class="dailyAbout"> |
8 | All links of one day<br>in a single page.<br> | 16 | All links of one day<br>in a single page.<br> |
9 | {if="$previousday"} <a href="?do=daily&day={$previousday}"><b><</b>Previous day</a>{else}<b><</b>Previous day{/if} | 17 | {if="$previousday"} <a href="?do=daily&day={$previousday}"><b><</b>Previous day</a>{else}<b><</b>Previous day{/if} |
10 | - | 18 | - |
11 | {if="$nextday"}<a href="?do=daily&day={$nextday}">Next day<b>></b></a>{else}Next day<b>></b>{/if} | 19 | {if="$nextday"}<a href="?do=daily&day={$nextday}">Next day<b>></b></a>{else}Next day<b>></b>{/if} |
12 | <br><br> | 20 | <br> |
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> | 21 | |
22 | {loop="$daily_about_plugin"} | ||
23 | {$value} | ||
24 | {/loop} | ||
25 | |||
26 | <br> | ||
27 | <a href="?do=dailyrss" title="1 RSS entry per day"><img src="images/feed-icon-14x14.png#" alt="rss_feed">Daily RSS Feed</a> | ||
14 | </div> | 28 | </div> |
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> | 29 | |
16 | <div class="dailyDate"><span class="nomobile">———————————</span> {function="strftime('%A %d, %B %Y', $day)"} <span class="nomobile">———————————</span></div> | 30 | <div class="dailyTitle"> |
31 | <img src="../images/floral_left.png" width="51" height="50" class="nomobile" alt="floral_left"> | ||
32 | The Daily Shaarli | ||
33 | <img src="../images/floral_right.png" width="51" height="50" class="nomobile" alt="floral_right"> | ||
34 | </div> | ||
35 | |||
36 | <div class="dailyDate"> | ||
37 | <span class="nomobile">———————————</span> | ||
38 | {function="strftime('%A %d, %B %Y', $day)"} | ||
39 | <span class="nomobile">———————————</span> | ||
40 | </div> | ||
41 | |||
17 | <div class="clear"></div> | 42 | <div class="clear"></div> |
18 | 43 | ||
19 | {if="$linksToDisplay"} | 44 | {if="$linksToDisplay"} |
@@ -47,6 +72,12 @@ | |||
47 | <div class="dailyEntryThumbnail">{$link.thumbnail}</div> | 72 | <div class="dailyEntryThumbnail">{$link.thumbnail}</div> |
48 | {/if} | 73 | {/if} |
49 | <div class="dailyEntryDescription">{$link.formatedDescription}</div> | 74 | <div class="dailyEntryDescription">{$link.formatedDescription}</div> |
75 | |||
76 | <div class="dailyEntryFooter"> | ||
77 | {loop="$link.link_plugin"} | ||
78 | {$value} | ||
79 | {/loop} | ||
80 | </div> | ||
50 | </div> | 81 | </div> |
51 | {/loop} | 82 | {/loop} |
52 | </div> | 83 | </div> |
@@ -55,6 +86,14 @@ | |||
55 | {else} | 86 | {else} |
56 | <div class="dailyNoEntry">No articles on this day.</div> | 87 | <div class="dailyNoEntry">No articles on this day.</div> |
57 | {/if} | 88 | {/if} |
89 | |||
90 | <div class="clear"></div> | ||
91 | |||
92 | <div id="plugin_zone_end_picwall" class="plugin_zone"> | ||
93 | {loop="$plugin_end_zone"} | ||
94 | {$value} | ||
95 | {/loop} | ||
96 | </div> | ||
58 | <div id="closing"><img src="../images/squiggle_closing.png" width="66" height="61" alt="-"></div> | 97 | <div id="closing"><img src="../images/squiggle_closing.png" width="66" height="61" alt="-"></div> |
59 | </div> | 98 | </div> |
60 | {include="page.footer"} | 99 | {include="page.footer"} |