-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
28 lines (25 loc) · 973 Bytes
/
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
---
layout: default
---
<div class="l-columns">
<div class="l-column-right">
{% include about-box.html %}
</div><!-- .l-column-right -->
<div class="l-column-left">
<section class="s-section-orange">
<article class="s-post-list">
<div class="l-section-header">
<h1>Writings and Videos</h1>
<p class="s-section-header-sub">Subscribe via <a href="/atom.xml">Atom</a> or <a href="/feed.json">JSON Feed</a>.</p>
</div><!-- .l-section-header -->
{% assign year = '' %}
{% for post in site.posts %}
{% capture this_year %}{{ post.date | date: "%Y" }}{% endcapture %}
{% if year != this_year %}<h3>{{ this_year }}</h3>{% endif %}
{% assign year = this_year %}
<p><a href="{{ post.url }}">{{ post.title }}</a>{% if post.blurb %} — {{ post.blurb }}{% endif %}</p>
{% endfor %}
</article>
</section>
</div><!-- .l-column-left -->
</div><!-- .l-columns -->