aboutsummaryrefslogtreecommitdiffhomepage
path: root/tpl/picwall.html
diff options
context:
space:
mode:
authorSébastien SAUVAGE <sebsauvage@sebsauvage.net>2013-02-26 10:09:41 +0100
committerSébastien SAUVAGE <sebsauvage@sebsauvage.net>2013-02-26 10:09:41 +0100
commit450342737ced8ef2864b4f83a4107a7fafcc4add (patch)
treea6d2fe843c27b5c3d88dab5581b6a06828d544b9 /tpl/picwall.html
downloadShaarli-450342737ced8ef2864b4f83a4107a7fafcc4add.tar.gz
Shaarli-450342737ced8ef2864b4f83a4107a7fafcc4add.tar.zst
Shaarli-450342737ced8ef2864b4f83a4107a7fafcc4add.zip
Initial commit (version 0.0.40 beta)v0.0.40beta
Diffstat (limited to 'tpl/picwall.html')
-rw-r--r--tpl/picwall.html24
1 files changed, 24 insertions, 0 deletions
diff --git a/tpl/picwall.html b/tpl/picwall.html
new file mode 100644
index 00000000..2083a629
--- /dev/null
+++ b/tpl/picwall.html
@@ -0,0 +1,24 @@
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> \ No newline at end of file