]> git.immae.eu Git - github/shaarli/Shaarli.git/blame - tpl/picwall.html
Merge pull request #123 from nodiscc/dont-disclose-version
[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'])"}
8e0ad1d9 5<script src="inc/jquery-1.11.2.min.js#"></script>
6<script src="inc/jquery-ui-1.11.2.min.js#"></script>
7<script src="inc/jquery.lazyload-1.9.3.min.js#"></script>
858c5c2b 8{/if}
45034273
SS
9</head>
10<body>
11<div id="pageheader">{include="page.header"}</div>
8079dfd1
A
12<div class="center">
13 <div id="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>
45034273 20</div>
45034273 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>