Skip to content

Commit

Permalink
Posts page now shows blog posts and Data Dispatch posts
Browse files Browse the repository at this point in the history
  • Loading branch information
dennis-barrett committed Dec 13, 2023
1 parent 26cfb04 commit ffa3642
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions posts.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,31 @@ layout: page
title: Posts
---

## Blog

This is an archive of my blog posts.

<ul>
{% for post in site.posts %}
{% if post.categories contains 'blog' %}
<li>
<a href="{{ post.url }}">{{ post.title }}</a>
</li>
{% endif %}
{% endfor %}
</ul>

## Data Dispatch

This is an archive of my posts for [Data Dispatch](/data-dispatch/). It is only periodically updated, so check the
X channel [@\_data_dispatch\_](https://x.com/_data_dispatch_) for more recent posts.

<ul>
{% for post in site.posts %}
{% if post.categories contains 'data-dispatch' %}
<li>
<a href="{{ post.url }}">{{ post.title }}</a>
</li>
{% endif %}
{% endfor %}
</ul>

0 comments on commit ffa3642

Please sign in to comment.