-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
28 lines (26 loc) · 914 Bytes
/
Copy pathindex.html
File metadata and controls
28 lines (26 loc) · 914 Bytes
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
---
layout: default
title:
description: David Sommers on software engineering, web performance, and the occasional yak shave.
---
<p class="index-intro">
Notes on software engineering, web performance, and the occasional yak shave.
</p>
{% assign posts_by_year = site.posts | group_by_exp: "post", "post.date | date: '%Y'" %}
{% for year in posts_by_year %}
<section class="year-group">
<h2 class="year-heading">{{ year.name }}</h2>
<ul class="post-list">
{% for post in year.items %}
<li class="post-item">
<a class="post-link" href="{{ post.url | relative_url }}">
<span class="post-date">
<time datetime="{{ post.date | date_to_xmlschema }}">{{ post.date | date: "%b %-d" }}</time>
</span>
<span class="post-title">{{ post.title }}</span>
</a>
</li>
{% endfor %}
</ul>
</section>
{% endfor %}