]> git.immae.eu Git - github/shaarli/Shaarli.git/blob - tpl/picwall.html
Merge pull request #295 from Knah-Tsaeb/patch-1
[github/shaarli/Shaarli.git] / tpl / picwall.html
1 <!DOCTYPE html>
2 <html>
3 <head>{include="includes"}
4 <script src="inc/blazy-1.3.1.min.js#"></script>
5 </head>
6 <body>
7 <div id="pageheader">{include="page.header"}</div>
8 <div class="center">
9 <div id="picwall_container">
10 {loop="linksToDisplay"}
11 <div class="picwall_pictureframe">
12 {$value.thumbnail}<a href="{$value.url}"><span class="info">{$value.title}</span></a>
13 </div>
14 {/loop}
15 </div>
16 </div>
17 {include="page.footer"}
18
19 <script>
20 window.onload = function() {
21 var bLazy = new Blazy();
22 }
23 </script>
24 </body>
25 </html>