-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
34 lines (31 loc) · 1.27 KB
/
index.html
File metadata and controls
34 lines (31 loc) · 1.27 KB
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
title: Home
---
<div class="container">
<p class="lead">Hi! I'm Antoine, welcome to my blog where I post about programming.</p>
</div>
<section class="post-list">
<div class="container">
{% for post in site.posts %} {% unless post.next %}
<h2 class="category-title">{{ post.date | date: '%Y' }}</h2>
{% else %} {% capture year %}{{ post.date | date: '%Y' }}{% endcapture %} {% capture nyear %}{{ post.next.date | date: '%Y'
}}{% endcapture %} {% if year != nyear %}
<h2 class="category-title">{{ post.date | date: '%Y' }}</h2>
{% endif %} {% endunless %}
<article class="post-item">
<div class="article-title"><a class="post-link" href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a></div>
<span class="post-meta date-label">{{ post.date | date: "%b %d" }}</span>
</article>
{% else %}
<h2 class="category-title">{{ site.time | date: '%Y' }}</h2>
<article class="post-item">
<div class="article-title">No posts yet</div>
</article>
{% endfor %}
</div>
</section>
<div class="container">
<p class="lead">If you want to know more about me, do take a look at my résumé!</p>
{% include resume.html %}
</div>