aboutsummaryrefslogtreecommitdiffhomepage
path: root/tpl/default/picwall.html
diff options
context:
space:
mode:
authorArthurHoaro <arthur@hoa.ro>2017-01-14 15:52:17 +0100
committerArthurHoaro <arthur@hoa.ro>2017-02-27 20:01:54 +0100
commit402b03464812aaec76bc841ca7dacb775baf1e03 (patch)
tree5f5ce030a71ed1ac327f60911cb22f0ca87d21cd /tpl/default/picwall.html
parent009ce9358168cc06c76fc2f4162829e552e633a3 (diff)
downloadShaarli-402b03464812aaec76bc841ca7dacb775baf1e03.tar.gz
Shaarli-402b03464812aaec76bc841ca7dacb775baf1e03.tar.zst
Shaarli-402b03464812aaec76bc841ca7dacb775baf1e03.zip
Introduce the new default Shaarli template
Diffstat (limited to 'tpl/default/picwall.html')
-rw-r--r--tpl/default/picwall.html50
1 files changed, 50 insertions, 0 deletions
diff --git a/tpl/default/picwall.html b/tpl/default/picwall.html
new file mode 100644
index 00000000..b9ae2f2e
--- /dev/null
+++ b/tpl/default/picwall.html
@@ -0,0 +1,50 @@
1<!DOCTYPE html>
2<html>
3<head>
4 {include="includes"}
5</head>
6<body>
7{include="page.header"}
8
9<div class="pure-g">
10 <div class="pure-u-lg-1-6 pure-u-1-24"></div>
11 <div class="pure-u-lg-2-3 pure-u-22-24 page-form page-visitor">
12 {$countPics=count($linksToDisplay)}
13 <h2 class="window-title">{'Picture Wall'|t} - {$countPics} {'pics'|t}</h2>
14
15 <div id="plugin_zone_start_picwall" class="plugin_zone">
16 {loop="$plugin_start_zone"}
17 {$value}
18 {/loop}
19 </div>
20
21 <div id="picwall_container">
22 {loop="$linksToDisplay"}
23 <div class="picwall_pictureframe">
24 {$value.thumbnail}<a href="{$value.real_url}"><span class="info">{$value.title}</span></a>
25 {loop="$value.picwall_plugin"}
26 {$value}
27 {/loop}
28 </div>
29 {/loop}
30 <div class="clear"></div>
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 src="inc/blazy-1.3.1.min.js#"></script>
43<script>
44 window.onload = function() {
45 var bLazy = new Blazy();
46 }
47</script>
48</body>
49</html>
50