1
0
mirror of https://github.com/tabler/tabler.git synced 2025-12-26 11:16:12 +04:00
Files
tabler/_includes/cards/photos.html
2018-02-19 20:17:04 +01:00

23 lines
563 B
HTML

<div class="card">
<div class="card-header">
<h3 class="card-title">Best Pictures for Today</h3>
</div>
<div class="card-body">
<div>
<div class="row img-gallery">
{% for photo in site.data.photos limit:4 offset:30 %}
<div class="col-6">
<a href="javascript:void(0)" class="d-block link-overlay">
<img class="d-block img-fluid rounded" src="{{ photo.small }}" alt="">
<span class="link-overlay-bg rounded">
<i class="fa fa-search"></i>
</span>
</a>
</div>
{% endfor %}
</div>
</div>
</div>
</div>