-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy patharchives.html
26 lines (26 loc) · 896 Bytes
/
archives.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
---
title: Notebook archives — Simon Pascal Klein — Graphic & web design professional
layout: base
---
{% include header-home.html %}
{% include nav.html %}
<div id="cover" class="clear archives">
<div class="index">
<h2><em>Notebook archives</em>…</h2>
<ul>
{% for post in site.posts %}
<li>
<a href="{{ post.url }}/#notebook" title="{{ post.title }}">
<span class="date">
<span class="day">{{ post.date | date: '%d' }}</span>
<span class="month"><abbr>{{ post.date | date: '%b' }}</abbr></span>
<span class="year">{{ post.date | date: '%Y' }}</span>
</span>
<span class="title">{{ post.title }}</span>
</a>
</li>
{% endfor %}
</ul>
</div> <!-- /.index -->
<div class="clear"></div>
</div> <!-- /#cover.clear -->