picwall.html 565 B

123456789101112131415161718192021222324
  1. <!DOCTYPE html>
  2. <html>
  3. <head>{include="includes"}
  4. <script src="inc/jquery.lazyload.min.js#"></script>
  5. </head>
  6. <body>
  7. <div id="pageheader">{include="page.header"}</div>
  8. <center>
  9. <div class="picwall_container">
  10. {loop="linksToDisplay"}
  11. <div class="picwall_pictureframe">
  12. {$value.thumbnail}<a href="{$value.permalink}"><span class="info">{$value.title|htmlspecialchars}</span></a>
  13. </div>
  14. {/loop}
  15. </div>
  16. </center>
  17. {include="page.footer"}
  18. </body>
  19. <script>
  20. $(document).ready(function() {
  21. $("img.lazyimage").show().lazyload();
  22. });
  23. </script>
  24. </html>