forked from pirati-web/jekyll-theme-pirati
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
29 lines (28 loc) · 865 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
rbar:
- fb
- calendar
---
<div class="row">
<div class="medium-12 large-8 columns">
<section class="o-section o-section--spaceBot">
<div class="o-section-inner o-section-inner--leftBlock">
<header class="o-section-header">
<h1 class="o-section__heading t-h1-super">Aktuální témata</h1>
</header>
{% for article in site.posts limit: 6 %}
{% include articles/horizontal-article.html article=article %}
{% endfor %}
<div class="c-article-listing__nextbox">
<a href="{{'/aktuality/' | relative_url}}" rel="next" class="button expanded large">Další články</a>
</div>
</div>
</section>
</div>
{% if page.rbar %}
<div class="medium-12 large-4 columns">
{% include right-bar/rbar.html param='rbar' %}
</div>
{% endif %}
</div>