Skip to content

Commit

Permalink
Create posts.html
Browse files Browse the repository at this point in the history
  • Loading branch information
betahat committed Mar 4, 2024
1 parent 7869088 commit 5ace680
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions posts.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
---
layout: page
title: Posts
permalink: /posts/
---

<div>

<ul class="post-list">
{% for post in site.posts %}
<li>
<span class="post-meta">{{ post.date | date: "%b %-d, %Y" }}</span>

<h2>
<a class="post-link" href="{{ post.url }}">{{ post.title }}</a>
</h2>
</li>
{% endfor %}
</ul>

<p>subscribe <a href="{{ site.baseurl }}/atom.xml">via RSS</a></p>

</div>

0 comments on commit 5ace680

Please sign in to comment.