core/api/modules/foto_my_albums/index.html

39 lines
1.4 KiB
HTML
Raw Normal View History

2022-12-11 13:55:49 +05:00
{include file=$header h1="Мои альбомы" title="Мои альбомы"}
<section class="container">
<button type="button" class="btn btn-outline-dark" data-link="/foto_add_album/"><i class="fas fa-plus"></i> Добавить альбом</button>
</section>
<!-- gallery-section class="image-popup"
================================================== -->
<section class="gallery-section">
<div class="container">
<div class="gallery-box iso-call col3">
{section name=customer loop=$albums} {if $albums[customer].id}
<div class="gallery-post">
<img src="upload/gallery/g1.jpg" data-original="/img/albums/{$albums[customer].img}.jpg" alt="" class="lazy">
<div class="hover-box">
<h2><a href="/foto_show_album/{$albums[customer].id}">{$albums[customer].naim}</a></h2><br><br>
<!-- div class="clearfix"></div>
<h4 style="font-size: 10pt; color: #fff; display: block;" class="text-center">Автор</h4 -->
</div>
</div>
{/if} {/section}
</div>
<!-- div class="center-button">
<a href="#" class="button-one">Prev Gallery</a>
<a href="#" class="button-one">Next Gallery</a>
</div -->
</div>
</section>
{include file=$footer}