]> git.immae.eu Git - github/shaarli/Shaarli.git/blob - tpl/default/picwall.html
5343abd6a7421131b6f7aca004c171d770d0de79
[github/shaarli/Shaarli.git] / tpl / default / picwall.html
1 <!DOCTYPE html>
2 <html{if="$language !== 'auto'"} lang="{$language}"{/if}>
3 <head>
4 {include="includes"}
5 </head>
6 <body>
7 {include="page.header"}
8
9 {if="count($linksToDisplay)===0 && $is_logged_in"}
10 <div class="pure-g pure-alert pure-alert-warning page-single-alert">
11 <div class="pure-u-1 center">
12 {'There is no cached thumbnail. Try to <a href="./?do=thumbs_update">synchronize them</a>.'|t}
13 </div>
14 </div>
15 {/if}
16
17 <div class="pure-g">
18 <div class="pure-u-lg-1-6 pure-u-1-24"></div>
19 <div class="pure-u-lg-2-3 pure-u-22-24 page-form page-visitor">
20 {$countPics=count($linksToDisplay)}
21 <h2 class="window-title">{'Picture Wall'|t} - {$countPics} {'pics'|t}</h2>
22
23 <div id="plugin_zone_start_picwall" class="plugin_zone">
24 {loop="$plugin_start_zone"}
25 {$value}
26 {/loop}
27 </div>
28
29 <div id="picwall-container" class="picwall-container" role="list">
30 {loop="$linksToDisplay"}
31 <div class="picwall-pictureframe" role="listitem">
32 {ignore}RainTPL hack: put the 2 src on two different line to avoid path replace bug{/ignore}
33 <img data-src="{$value.thumbnail}#" class="b-lazy"
34 src=""
35 alt="" width="{$thumbnails_width}" height="{$thumbnails_height}" />
36 <a href="{$value.real_url}"><span class="info">{$value.title}</span></a>
37 {loop="$value.picwall_plugin"}
38 {$value}
39 {/loop}
40 </div>
41 {/loop}
42 <div class="clear"></div>
43 </div>
44
45 <div id="plugin_zone_end_picwall" class="plugin_zone">
46 {loop="$plugin_end_zone"}
47 {$value}
48 {/loop}
49 </div>
50 </div>
51 <div class="pure-u-lg-1-6 pure-u-1-24"></div>
52 </div>
53
54 {include="page.footer"}
55 <script src="js/thumbnails.min.js?v={$version_hash}"></script>
56 </body>
57 </html>
58