forked from nicoespeon/nicoespeon.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
43 lines (39 loc) · 1.71 KB
/
index.html
File metadata and controls
43 lines (39 loc) · 1.71 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
35
36
37
38
39
40
41
42
43
---
layout: default
title: Home
description: Freelance web-developer and project manager thoughts. LEAN management, Software Craftmanship, OOCSS, Backbone.js, front-end performance and a bit of PHP back-end frameworks.
---
<p class="section">
Hi there!<br />
My name is Nicolas and these are some posts and thoughts I wrote about web development.<br><br>
<i class="icon-info"></i> In case you want to catch up with my last articles, <a href="https://medium.com/@nicoespeon">I now post on Medium</a> for convenience.
</p>
<section class="section">
<ul id="timeline" class="timeline timeline--rev">
{% if paginator.previous_page %}
<li>
<a class="timeline__prev" href="/{% if paginator.previous_page != 1 %}page{{paginator.previous_page}}{% endif %}">
Recent posts
</a>
</li>
{% endif %}
{% for post in paginator.posts %}
<li>
<time class="timeline__time" datetime='{{ post.date | date: "%Y-%m-%d" }}'>
<span class="muted">{{ post.date | date: "%Y" }}</span>
<span>{{ post.date | date: "%d %b" }}</span>
</time>
<div class="timeline__icon {% if post.icon == undefined %}icon-embed{% else %}icon-{{ post.icon }}{% endif %}"></div>
<a class="timeline__label" href="{{ post.url }}">
<h1>{{ post.title }}</h1>
<p class="brand-face">{{ post.description }}</p>
</a>
</li>
{% endfor %}
{% if paginator.next_page %}
<li class="timeline__next">
<a href="/page{{paginator.next_page}}">Older posts</a>
</li>
{% endif %}
</ul>
</section>