diff options
author | neodarz <neodarz@neodarz.net> | 2017-05-24 15:23:11 +0200 |
---|---|---|
committer | neodarz <neodarz@neodarz.net> | 2017-05-24 15:23:11 +0200 |
commit | 96a660a21e47d43ebc473ce9d23e712c0e3e1261 (patch) | |
tree | 83f62bba16e51bfd64228b7d12076709bb7273f1 /picwall.html | |
download | shaarli_ascii-96a660a21e47d43ebc473ce9d23e712c0e3e1261.tar.xz shaarli_ascii-96a660a21e47d43ebc473ce9d23e712c0e3e1261.zip |
initil release
Diffstat (limited to 'picwall.html')
-rw-r--r-- | picwall.html | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/picwall.html b/picwall.html new file mode 100644 index 0000000..248e56d --- /dev/null +++ b/picwall.html @@ -0,0 +1,45 @@ +<!DOCTYPE html> +<html> +<head> + {include="includes"} +</head> +<body> +{include="page.header"} + +<div class="pure-g"> + <div class="pure-u-lg-1-6 pure-u-1-24"></div> + <div class="pure-u-lg-2-3 pure-u-22-24 page-form page-visitor"> + {$countPics=count($linksToDisplay)} + <h2 class="window-title">{'Picture Wall'|t} - {$countPics} {'pics'|t}</h2> + + <div id="plugin_zone_start_picwall" class="plugin_zone"> + {loop="$plugin_start_zone"} + {$value} + {/loop} + </div> + + <div id="picwall_container"> + {loop="$linksToDisplay"} + <div class="picwall_pictureframe"> + {$value.thumbnail}<a href="{$value.real_url}"><span class="info">{$value.title}</span></a> + {loop="$value.picwall_plugin"} + {$value} + {/loop} + </div> + {/loop} + <div class="clear"></div> + </div> + + <div id="plugin_zone_end_picwall" class="plugin_zone"> + {loop="$plugin_end_zone"} + {$value} + {/loop} + </div> + </div> +</div> + +{include="page.footer"} +<script src="inc/blazy-1.3.1.min.js#"></script> +</body> +</html> + |