layouts page, search results, top menu

This commit is contained in:
codecalm
2020-01-07 21:44:43 +01:00
parent 8355d7f5e0
commit 446ef17b2c
29 changed files with 462 additions and 282 deletions
+29
View File
@@ -0,0 +1,29 @@
---
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>