summaryrefslogtreecommitdiff
path: root/src/blog.njk
blob: 272f29b61f52a9f0cfc5b1e9c0ce168a7d63eda8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
---
layout: base.njk
title: Blog
permalink: /blog/
---

<h2>Liz's Ramblings</h2>

{%- for post in collections.posts | reverse %}
  <div style="display: flex; justify-content: space-between; align-items: baseline;">
    <div class="text-left">
      <a href="{{ post.url }}">{{ post.data.title }}</a>
      {%- if post.data.subtitle %}
      <br><small>{{ post.data.subtitle }}</small>
      {%- endif %}
    </div>
    <time class="text-right" datetime="{{ post.date | dateToRfc3339 }}">{{ post.date.toLocaleDateString() }}</time>
  </div>
{%- endfor %}