aboutsummaryrefslogtreecommitdiffhomepage
path: root/tpl/default/picwall.html
diff options
context:
space:
mode:
authorArthurHoaro <arthur@hoa.ro>2016-10-15 17:33:18 +0200
committerArthurHoaro <arthur@hoa.ro>2016-11-05 14:29:53 +0100
commit6885613a33a8418690521bf740e9ea5f0c235655 (patch)
tree6cd53a9d0f731148d49fc6d23390fcf84da113bd /tpl/default/picwall.html
parent07f9187e0aedd5d5d2dc533713512f412ef9244b (diff)
downloadShaarli-6885613a33a8418690521bf740e9ea5f0c235655.tar.gz
Shaarli-6885613a33a8418690521bf740e9ea5f0c235655.tar.zst
Shaarli-6885613a33a8418690521bf740e9ea5f0c235655.zip
picwall template
Diffstat (limited to 'tpl/default/picwall.html')
-rw-r--r--tpl/default/picwall.html49
1 files changed, 49 insertions, 0 deletions
diff --git a/tpl/default/picwall.html b/tpl/default/picwall.html
new file mode 100644
index 00000000..686f506c
--- /dev/null
+++ b/tpl/default/picwall.html
@@ -0,0 +1,49 @@
1<!DOCTYPE html>
2<html>
3<head>
4 {include="includes"}
5 <script src="inc/blazy-1.3.1.min.js#"></script>
6</head>
7<body>
8{include="page.header"}
9
10<div class="pure-g">
11 <div class="pure-u-lg-1-6 pure-u-1-8"></div>
12 <div class="pure-u-lg-2-3 pure-u-3-4 page-form page-visitor">
13 {$countPics=count($linksToDisplay)}
14 <h2>{'Picture Wall'|t} - {$countPics} {'pics'|t}</h2>
15
16 <div id="plugin_zone_start_picwall" class="plugin_zone">
17 {loop="$plugin_start_zone"}
18 {$value}
19 {/loop}
20 </div>
21
22 <div id="picwall_container">
23 {loop="$linksToDisplay"}
24 <div class="picwall_pictureframe">
25 {$value.thumbnail}<a href="{$value.real_url}"><span class="info">{$value.title}</span></a>
26 {loop="$value.picwall_plugin"}
27 {$value}
28 {/loop}
29 </div>
30 {/loop}
31 </div>
32
33 <div id="plugin_zone_end_picwall" class="plugin_zone">
34 {loop="$plugin_end_zone"}
35 {$value}
36 {/loop}
37 </div>
38 </div>
39</div>
40
41{include="page.footer"}
42<script>
43 window.onload = function() {
44 var bLazy = new Blazy();
45 }
46</script>
47</body>
48</html>
49