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