forked from cultuurnet/uit-documentatie
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
46 lines (40 loc) · 1.1 KB
/
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
---
layout: index
---
<div class="hero">
<div class="hero-image"></div>
<div class="hero-content">
<h1 class="hero-title">{{site.title_full}}</h1>
<p class="hero-description">{{site.description}}</p>
</div>
</div>
<div class="search-full">
{% include search.html %}
</div>
<div class="row library">
<div class="row">
<div class="catalog">
<h2 class="group-title"><strong>Handleidingen</strong> <small>Technische how-to's, geschreven voor ontwikkelaars en systeembeheerders</small></h2>
<div class="books">
{% assign books = site.data.library | sort: 'weight'%}
{% for book in books%}
{% if book.category == "Technisch" %}
{% include bookteaser.html %}
{% endif %}
{% endfor %}
</div>
</div>
</div>
<div class="row">
<div class="catalog">
<h2 class="group-title"><strong>Gidsen</strong> <small>Achtergrondinformatie voor analisten</small></h2>
<div class="books">
{% for book in books %}
{% if book.category == "Functioneel" %}
{% include bookteaser.html %}
{% endif %}
{% endfor %}
</div>
</div>
</div>
</div>