You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
463 B
Markdown
19 lines
463 B
Markdown
2 years ago
|
---
|
||
|
title: /blog
|
||
|
layout: default
|
||
|
permalink: /blog
|
||
|
list: bullet
|
||
|
---
|
||
|
|
||
|
# pickmy.org:~/blog$
|
||
|
|
||
|
This is a master list of blog posts written since the new site (24-AUG) or imported from the old data. At some point this may have additional organization or fancier output. You get what you get.
|
||
|
|
||
|
<ul>
|
||
|
{% for post in site.categories.blog %}
|
||
|
<li>
|
||
|
<a href="{{ post.url }}">{{ post.title }} | {{ post.date | date: "%d-%^b-%Y" }}</a>
|
||
|
</li>
|
||
|
{% endfor %}
|
||
|
</ul>
|