2013-02-26 10:09:41 +01:00
|
|
|
<!DOCTYPE html>
|
2025-04-18 10:57:05 +02:00
|
|
|
<html{if="$language !=='auto'"} lang=" {$language}"{/if}>
|
2017-12-15 12:16:50 +01:00
|
|
|
|
2025-04-18 10:57:05 +02:00
|
|
|
<head>
|
|
|
|
{include="includes"}
|
|
|
|
</head>
|
2023-05-25 11:13:43 +02:00
|
|
|
|
2025-04-18 10:57:05 +02:00
|
|
|
<body>
|
|
|
|
{include="page.header"}
|
2023-05-25 11:13:43 +02:00
|
|
|
|
2025-04-18 10:57:05 +02:00
|
|
|
{if="count($linksToDisplay)===0 && $is_logged_in"}
|
|
|
|
<div class="pure-g pure-alert pure-alert-warning page-single-alert">
|
|
|
|
<div class="pure-u-1 center">
|
|
|
|
{'There is no cached thumbnail.'|t}
|
|
|
|
<a href="{$base_path}/admin/thumbnails">{'Try to synchronize them.'|t}</a>
|
|
|
|
</div>
|
2023-05-25 11:13:43 +02:00
|
|
|
</div>
|
2025-04-18 10:57:05 +02:00
|
|
|
{/if}
|
|
|
|
|
|
|
|
<section>
|
|
|
|
{$countPics=count($linksToDisplay)}
|
|
|
|
<h2>{'Picture Wall'|t} - {$countPics} {'pics'|t}</h2>
|
|
|
|
<div id="plugin_zone_start_picwall" class="plugin_zone">
|
|
|
|
{loop="$plugin_start_zone"}
|
|
|
|
{$value}
|
|
|
|
{/loop}
|
|
|
|
</div>
|
2017-12-15 12:16:50 +01:00
|
|
|
|
2025-04-18 10:57:05 +02:00
|
|
|
<div class="gallery flex flex-center">
|
|
|
|
{loop="$linksToDisplay"}
|
|
|
|
<figure>
|
|
|
|
<a href="{$value.real_url}">
|
|
|
|
<img src="{$value.thumbnail}#" loading="lazy" width="{$thumbnails_width}" height="{$thumbnails_height}" alt="thumbnail">
|
|
|
|
</a>
|
|
|
|
<figcaption title="{$value.title}">{$value.title}</figcaption>
|
2023-05-25 11:13:43 +02:00
|
|
|
{loop="$value.picwall_plugin"}
|
|
|
|
{$value}
|
|
|
|
{/loop}
|
2025-04-18 10:57:05 +02:00
|
|
|
</figure>
|
|
|
|
{/loop}
|
|
|
|
</div>
|
2018-10-05 11:55:51 +02:00
|
|
|
|
2025-04-18 10:57:05 +02:00
|
|
|
<div id="plugin_zone_end_picwall" class="plugin_zone">
|
|
|
|
{loop="$plugin_end_zone"}
|
|
|
|
{$value}
|
|
|
|
{/loop}
|
|
|
|
</div>
|
|
|
|
</section>
|
2017-12-15 12:16:50 +01:00
|
|
|
|
2025-04-18 10:57:05 +02:00
|
|
|
{include="page.footer"}
|
|
|
|
</body>
|
|
|
|
</html>
|