mirror of
https://github.com/minoplhy/crappy-reverie.git
synced 2024-11-14 21:36:57 +00:00
27 lines
554 B
Markdown
27 lines
554 B
Markdown
|
---
|
||
|
layout: page
|
||
|
title:
|
||
|
permalink: /blog/
|
||
|
---
|
||
|
|
||
|
|
||
|
<div class="posts">
|
||
|
{% for post in site.posts %}
|
||
|
{% if post.hidden != true %}
|
||
|
<article class="post">
|
||
|
<a href="{{ site.baseurl }}{{ post.url }}">
|
||
|
<h1>{{ post.title }}</h1>
|
||
|
|
||
|
<div>
|
||
|
<p class="post_date">{{ post.date | date: "%B %e, %Y" }}</p>
|
||
|
</div>
|
||
|
</a>
|
||
|
<div class="entry">
|
||
|
{{ post.excerpt }}
|
||
|
</div>
|
||
|
|
||
|
<a href="{{ site.baseurl }}{{ post.url }}" class="read-more">Read More</a>
|
||
|
</article>
|
||
|
{% endif %}
|
||
|
{% endfor %}
|
||
|
</div>
|