diff options
author | Mario <mario@mariovavti.com> | 2022-07-16 14:49:56 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2022-07-16 14:49:56 +0000 |
commit | ae705dd86514ad797a312b4463186e6f29f55f79 (patch) | |
tree | 8c834aae554c6d124c3306e05f8b8521694cac3d /view/tpl/channel_activities_photos.tpl | |
parent | f0fa2ce1710563469f71c0e53d33a64ab7de35da (diff) | |
download | volse-hubzilla-ae705dd86514ad797a312b4463186e6f29f55f79.tar.gz volse-hubzilla-ae705dd86514ad797a312b4463186e6f29f55f79.tar.bz2 volse-hubzilla-ae705dd86514ad797a312b4463186e6f29f55f79.zip |
HQ dashboard - missing files
Diffstat (limited to 'view/tpl/channel_activities_photos.tpl')
-rw-r--r-- | view/tpl/channel_activities_photos.tpl | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/view/tpl/channel_activities_photos.tpl b/view/tpl/channel_activities_photos.tpl new file mode 100644 index 000000000..b0079f382 --- /dev/null +++ b/view/tpl/channel_activities_photos.tpl @@ -0,0 +1,19 @@ +<div class="mb-1 text-uppercase"> + <a href="{{$url}}"><i class="fa fa-fw fa-{{$icon}} generic-icons-nav"></i>{{$label}}</a> +</div> +<div id="photo-album" class="mb-4"> + {{foreach $items as $i}} + <a href="{{$i.url}}" title="{{$i.alt}}"> + <img src="{{$i.src}}" width="{{$i.width}}" height="{{$i.height}}" alt="{{$i.alt}}"> + <div class='jg-caption autotime' title="{{$i.edited}}"></div> + </a> + {{/foreach}} +</div> +<script> + $('#photo-album').justifiedGallery({ + border: 0, + margins: 3, + maxRowsCount: 1, + waitThumbnailsLoad: false + }); +</script> |