fabledsword_com/blog.html
Bryan Van Deusen 3f2cec5cb9 first commit
2025-11-10 19:03:13 -05:00

38 lines
No EOL
1.1 KiB
HTML

---
layout: default
title: Blog
---
<h1>Latest Posts</h1>
<section class="post-list">
{% for post in site.posts %}
<a href="{{ post.url | relative_url }}">
<article class="post-item">
<h2 class="post-title">
{{ post.title }}
</h2>
<div class="post-meta">
<time datetime="{{ post.date | date_to_xmlschema }}">
{{ post.date | date: "%B %-d, %Y" }}
</time>
·
<span class="post-author">
{{ post.author | default: post.authors | default: site.author.name | default: site.author | default: "Unknown" }}
</span>
{% if post.tags and post.tags.size > 0 %}
<ul class="post-tags">
{% for tag in post.tags %}
<li>{{ tag }}</li>
{% endfor %}
</ul>
{% endif %}
</div>
<div class="post-excerpt">
{{ post.excerpt | strip_html | truncate: 220 }}
</div>
</article>
</a>
{% endfor %}
</section>