-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
30 lines (27 loc) · 884 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
---
layout: default
---
<div>
<h2 class="vertical">První patro</h2>
{% for page in site.tags.prvni-patro %}
<div class="{% cycle 'prvni-patro': 'ggg2', 'ggg3' %}">
{% assign content = page.content %}
{% include vystava-small-partial.html %}
</div>
{% endfor %}
{% for page in site.tags.prvni-patro-future %}
<div class="{% cycle 'prvni-patro': 'ggg2', 'ggg3' %}">
{% assign content = page.content %}
{% include vystava-small-partial-future.html %}
</div>
{% endfor %}
</div>
<div class="ggg-clear">
<h2 class="vertical">Přízemí</h2>
{% for page in site.tags.prizemi %}
<div class="{% cycle 'prizemi': 'ggg2', 'ggg3' %}">
{% assign content = page.content %}
{% include vystava-small-partial.html %}
</div>
{% endfor %}
</div>