25 lines
583 B
HTML
25 lines
583 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>{include="includes"}
|
|
<script src="inc/blazy-1.3.1.min.js#"></script>
|
|
</head>
|
|
<body>
|
|
<div id="pageheader">{include="page.header"}</div>
|
|
<div class="center">
|
|
<div id="picwall_container">
|
|
{loop="linksToDisplay"}
|
|
<div class="picwall_pictureframe">
|
|
{$value.thumbnail}<a href="{$value.url}"><span class="info">{$value.title}</span></a>
|
|
</div>
|
|
{/loop}
|
|
</div>
|
|
</div>
|
|
{include="page.footer"}
|
|
|
|
<script>
|
|
window.onload = function() {
|
|
var bLazy = new Blazy();
|
|
}
|
|
</script>
|
|
</body>
|
|
</html>
|