1
0
ami.sc/blog.html
2023-11-22 17:13:19 -06:00

15 lines
349 B
HTML

---
title: "Ami :: Blog"
layout: blog
parent: "Blog"
---
{% for post in site.posts %}
<a class="blog_box" href="{{ post.url }}">
<img src="/assets/post_images/{{ post.image }}" alt="Post Image"/>
<h2>{{ post.title }}</h2>
<h3>{{ post.date | date_to_string }}</h3>
<p>{{ post.excerpt }}</p>
</a>
{% endfor %}