mirror of
https://framagit.org/hubzilla/core.git
synced 2026-06-21 00:52:33 -04:00
20 lines
564 B
Smarty
20 lines
564 B
Smarty
<div class="mb-1 text-uppercase">
|
|
<a href="{{$url}}"><i class="bi bi-{{$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 rounded text-truncate autotime' title="{{$i.edited}}"></div>
|
|
</a>
|
|
{{/foreach}}
|
|
</div>
|
|
<script>
|
|
$('#photo-album').justifiedGallery({
|
|
border: 0,
|
|
margins: 3,
|
|
maxRowsCount: 1,
|
|
waitThumbnailsLoad: false
|
|
});
|
|
</script>
|