1
0
mirror of https://github.com/tabler/tabler.git synced 2026-08-02 08:25:32 +04:00
Files
tabler/pages/search-results.html
T
2020-01-07 21:44:43 +01:00

30 lines
683 B
HTML

---
page-title: Search results
page-title-description: About 2,410 result (0.19 seconds)
menu: extra.search-results
menu-layout: horizontal
---
<div class="row">
<div class="col-3">
{% include parts/nav/nav-aside.html %}
</div>
<div class="col-9">
<div class="row">
{% for photo in site.data.photos %}
{% if photo.horizontal %}
{% assign person = site.data.people[forloop.index0] %}
<div class="col-sm-6 col-lg-4">
{% include cards/gallery-photo.html person=person hide-likes=true %}
</div>
{% assign horizontal = horizontal | plus: 1 %}
{% endif %}
{% if horizontal == 12 %}
{% break %}
{% endif %}
{% endfor %}
</div>
</div>
</div>