24 lines
512 B
HTML
24 lines
512 B
HTML
---
|
|
title: "(Tech)notes"
|
|
layout: default
|
|
---
|
|
|
|
<h1>(Tech)notes</h1>
|
|
|
|
<p>Documenting work-in-progress projects, learnings, and more.</p>
|
|
|
|
<p></p>
|
|
|
|
{% assign posts_by_month = site.posts | group_by_exp: "post", "post.date | date: '%B %Y'" %}
|
|
{% for month in posts_by_month %}
|
|
<h2>{{ month.name }}</h2>
|
|
<ul>
|
|
{% for post in month.items %}
|
|
<li>
|
|
<time>{{ post.date | date: "%Y.%m.%d" }}</time>
|
|
<a href="{{ post.url }}">{{ post.title }}</a>
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
{% endfor %}
|