]> git.immae.eu Git - github/shaarli/Shaarli.git/blame - tpl/picwall.html
Added option to disable jQuery and heavy javascript
[github/shaarli/Shaarli.git] / tpl / picwall.html
CommitLineData
45034273
SS
1<!DOCTYPE html>
2<html>
3<head>{include="includes"}
858c5c2b
SS
4{if="empty($GLOBALS['disablejquery'])"}
5 <script src="inc/jquery.lazyload.min.js#"></script>
6{/if}
45034273
SS
7</head>
8<body>
9<div id="pageheader">{include="page.header"}</div>
10<center>
11<div class="picwall_container">
12 {loop="linksToDisplay"}
13 <div class="picwall_pictureframe">
14 {$value.thumbnail}<a href="{$value.permalink}"><span class="info">{$value.title|htmlspecialchars}</span></a>
15 </div>
16 {/loop}
17</div>
18</center>
19{include="page.footer"}
20</body>
858c5c2b 21{if="empty($GLOBALS['disablejquery'])"}
45034273
SS
22<script>
23$(document).ready(function() {
24 $("img.lazyimage").show().lazyload();
25});
26</script>
858c5c2b 27{/if}
45034273 28</html>