2024-03-29 04:13:45 +00:00
|
|
|
---
|
|
|
|
layout: page
|
|
|
|
title: Blog
|
|
|
|
permalink: /blog.html
|
|
|
|
---
|
|
|
|
<div class="posts">
|
|
|
|
{% for post in site.posts %}
|
|
|
|
<article class="post">
|
2024-04-23 15:52:01 +00:00
|
|
|
<h1><a href="{{ post.url }}" title="{{ post.title }}">{{ post.title }}</a></h1>
|
2024-03-29 04:13:45 +00:00
|
|
|
|
|
|
|
<div class="entry">
|
|
|
|
{{ post.excerpt }}
|
|
|
|
</div>
|
|
|
|
<h4>Written on {{ post.date | date: "%B %e, %Y" }}</h4>
|
2024-04-23 15:52:01 +00:00
|
|
|
<a href="{{ post.url }}" class="read-more">Read More</a>
|
2024-03-29 04:13:45 +00:00
|
|
|
</article>
|
|
|
|
{% endfor %}
|
|
|
|
</div>
|