2013-02-26 10:09:41 +01:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>{include="includes"}
|
2013-03-01 22:21:10 +01:00
|
|
|
{if="empty($GLOBALS['disablejquery'])"}
|
|
|
|
<script src="inc/jquery.lazyload.min.js#"></script>
|
|
|
|
{/if}
|
2013-02-26 10:09:41 +01:00
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div id="pageheader">{include="page.header"}</div>
|
|
|
|
<center>
|
|
|
|
<div class="picwall_container">
|
|
|
|
{loop="linksToDisplay"}
|
|
|
|
<div class="picwall_pictureframe">
|
|
|
|
{$value.thumbnail}<a href="{$value.permalink}"><span class="info">{$value.title|htmlspecialchars}</span></a>
|
|
|
|
</div>
|
|
|
|
{/loop}
|
|
|
|
</div>
|
|
|
|
</center>
|
|
|
|
{include="page.footer"}
|
2013-03-10 19:04:48 +01:00
|
|
|
|
2013-03-01 22:21:10 +01:00
|
|
|
{if="empty($GLOBALS['disablejquery'])"}
|
2013-02-26 10:09:41 +01:00
|
|
|
<script>
|
|
|
|
$(document).ready(function() {
|
|
|
|
$("img.lazyimage").show().lazyload();
|
|
|
|
});
|
|
|
|
</script>
|
2013-03-01 22:21:10 +01:00
|
|
|
{/if}
|
2013-03-10 19:04:48 +01:00
|
|
|
</body>
|
2013-02-26 10:09:41 +01:00
|
|
|
</html>
|