-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
35 lines (29 loc) · 1.3 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
---
layout: default
---
<div class="bg-white border-b shadow-sm py-4">
<div class="container">
<section class="my-6 sm:my-8 md:my-9 lg:my-10">
<p class="sm:text-xl">I'm Joren Van Hee, a <strong>web developer</strong> from Belgium. <span class="whitespace-no-wrap">I build</span> <strong>websites</strong> and <strong>applications</strong>. <span class="whitespace-no-wrap">I play</span> the drums 🥁 and I'm currently giving the bass guitar 🎸 a try.</p>
</section>
</div>
</div>
<div class="container mb-10">
{% if site.posts.size > 0 %}
<h2 class="t-beta">Articles</h2>
<ul class="leading-pretty-tight">
{% for post in site.posts %}{% if post.hidden != true %}
<li class="mb-3"><a href="{{ post.url }}" class="anchor">{{ post.title }}</a></li>
{% endif %}{% endfor %}
</ul>
{% endif %}
{% if site.projects.size > 0 %}
<h2 class="t-beta">Projects</h2>
<ul class="leading-pretty-tight">
{% assign sortedProjects = (site.projects | sort: 'date') | reverse %}
{% for project in sortedProjects %}
<li class="mb-3"><a href="{{ project.external.url }}" class="anchor">{{ project.title }}</a></li>
{% endfor %}
</ul>
{% endif %}
</div>