summaryrefslogtreecommitdiff
path: root/src/index.njk
blob: 064c05e3aa049a477d8ee2963cf59b37217f66d0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
---
layout: base.njk
title: Home
---

<h1>liz.coffee</h1>

<p>A cute little blog with interactive toys.</p>

<h2>Posts</h2>

<ul>
{%- for post in collections.all | reverse -%}
  {%- if post.data.title -%}
  <li>
    <a href="{{ post.url }}">{{ post.data.title }}</a>
    {%- if post.data.date -%}
    <span> - {{ post.data.date | date: "%Y-%m-%d" }}</span>
    {%- endif -%}
  </li>
  {%- endif -%}
{%- endfor -%}
</ul>