diff options
author | Arthur <arthur@hoa.ro> | 2017-01-06 11:40:54 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-01-06 11:40:54 +0100 |
commit | 7418f7cb60524c3bfc2f240386b5e3e7eb9b3257 (patch) | |
tree | 4b0c89c133ad1679c5db3a4f0f6b94079f776395 /tpl/default/picwall.html | |
parent | 93b1fe54fb99efff30eec0d405cc7319fbbc1f95 (diff) | |
parent | 01c6e32a02034ab119d83364c4648ce55d75543b (diff) | |
download | Shaarli-7418f7cb60524c3bfc2f240386b5e3e7eb9b3257.tar.gz Shaarli-7418f7cb60524c3bfc2f240386b5e3e7eb9b3257.tar.zst Shaarli-7418f7cb60524c3bfc2f240386b5e3e7eb9b3257.zip |
Merge pull request #732 from ArthurHoaro/feature/theme-manager
Theme manager: improvements
Diffstat (limited to 'tpl/default/picwall.html')
-rw-r--r-- | tpl/default/picwall.html | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/tpl/default/picwall.html b/tpl/default/picwall.html new file mode 100644 index 00000000..4e227e37 --- /dev/null +++ b/tpl/default/picwall.html | |||
@@ -0,0 +1,44 @@ | |||
1 | <!DOCTYPE html> | ||
2 | <html> | ||
3 | <head>{include="includes"} | ||
4 | <script src="inc/blazy-1.3.1.min.js#"></script> | ||
5 | </head> | ||
6 | <body> | ||
7 | <div id="pageheader">{include="page.header"}</div> | ||
8 | |||
9 | <div id="plugin_zone_start_picwall" class="plugin_zone"> | ||
10 | {loop="$plugin_start_zone"} | ||
11 | {$value} | ||
12 | {/loop} | ||
13 | </div> | ||
14 | |||
15 | <div class="center"> | ||
16 | <div id="picwall_container"> | ||
17 | {loop="$linksToDisplay"} | ||
18 | <div class="picwall_pictureframe"> | ||
19 | {$value.thumbnail}<a href="{$value.real_url}"><span class="info">{$value.title}</span></a> | ||
20 | {loop="$value.picwall_plugin"} | ||
21 | {$value} | ||
22 | {/loop} | ||
23 | </div> | ||
24 | {/loop} | ||
25 | </div> | ||
26 | </div> | ||
27 | |||
28 | <div class="clear"></div> | ||
29 | |||
30 | <div id="plugin_zone_end_picwall" class="plugin_zone"> | ||
31 | {loop="$plugin_end_zone"} | ||
32 | {$value} | ||
33 | {/loop} | ||
34 | </div> | ||
35 | |||
36 | {include="page.footer"} | ||
37 | |||
38 | <script> | ||
39 | window.onload = function() { | ||
40 | var bLazy = new Blazy(); | ||
41 | } | ||
42 | </script> | ||
43 | </body> | ||
44 | </html> | ||