-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathguide.html
More file actions
35 lines (22 loc) · 765 Bytes
/
guide.html
File metadata and controls
35 lines (22 loc) · 765 Bytes
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
30
31
32
33
34
---
layout: default
---
<section class="container-fluid">
<div id="features" class="jumbotron">
<h2>Guider</h2>
<h4>Lär dig mer om Kaddio och ännu mer</h4>
{% assign guides = site.guides | sort:"date" | reverse %}
{% for post in guides %}
{% cycle 'add rows': '<div class="row">', nil, nil %}
<div class="col-sm-4 feature-col">
<div class="feature">
<h3><i class="fa fa-{{post.icon}}"></i> {{post.title}}</h3>
<p>{{post.teaser}}</p>
<a href="{{ post.url | prepend: site.github.url }}" class="">Läs hela artikeln</a>
</div>
</div>
{% cycle 'close rows': nil, nil, '</div>' %}
{% endfor %}
{% cycle 'close rows': nil, '</div>', '</div>' %}
</div>
</section>