anonymousland/_layouts/blog-index.html

12 lines
284 B
HTML
Raw Normal View History

2022-05-22 03:41:24 +00:00
---
layout: page
---
{% for post in site.posts %}
<a href="{{ post.url | prepend: site.baseurl }}">
<h1 class="post-title"> {{ post.title }}</h1>
<h5 class="post-title"> {{ post.date }} </h5>
</a>
<br/>
<div style="margin-bottom: 5em;"></div>
{% endfor %}