1
0
Fork 0
websitedesign2025/blog/index.html

16 lines
415 B
HTML
Raw Normal View History

2025-01-07 13:57:35 -06:00
---
title: Blog
layout: noindent
---
<ul>
{% for post in site.posts %}
<li class="my-5">
<a href="{{ post.url }}" class="font-mplus2 text-3xl underline decoration-slate-600">{{post.title}}</a>
<div class="*:indent-8">
{{post.excerpt | truncatewords: 50 }}
</div>
<span class="font-baskerville"></span>
</li>
{% endfor %}
</ul>