-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
44 lines (36 loc) · 1.11 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
---
lang: nl
---
<html>
{% include head.html %}
<body data-spy="scroll" data-target=".scrollspy">
{% include header.html %}
{% assign posts=site.posts | where: "lang", page.lang %}
<div class="page-content">
<div class="wrapper">
<div class="home">
<a href="{{ site.baseurl }}/en/"><img src="{{ site.baseurl }}/assets/gb.png"> English version</a>
<ul class="post-list">
{% for post in posts reversed %}
<a name="{{ post.title | slugify }}"></a>
{% assign content = post.content %}
{% include post.html %}
{% endfor %}
</ul>
</div>
<div class="sidebar">
<div data-spy="affix" data-offset-top="258">
<div class="scrollspy">
<ul id="nav" class="nav">
{% for post in posts reversed %}
<li><a href="#{{ post.title | slugify }}">{{ post.title }}</a></li>
{% endfor %}
</ul>
</div>
</div>
</div>
</div>
</div>
{% include footer.html %}
</body>
</html>