hip-site/index.html

20 lines
445 B
HTML
Raw Normal View History

2015-09-03 06:22:56 +00:00
---
layout: default
---
2015-09-08 06:44:47 +00:00
<h1 style="">
2015-09-06 11:31:38 +00:00
{{ site.title }}
</h1>
2015-09-03 06:22:56 +00:00
2015-09-06 11:31:38 +00:00
{% for post in site.posts %}
<div class="post">
2015-09-03 06:22:56 +00:00
<h2>
2015-09-06 11:31:38 +00:00
<a class="post-link" href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a>
2015-09-03 06:22:56 +00:00
</h2>
2015-09-06 11:31:38 +00:00
<p class="date">
2020-07-07 13:33:43 +00:00
{{ post.date | date: "%b %-d, %Y" }} {% if post.post_author %} - {{ post.post_author }} {%endif%}
2015-09-06 11:31:38 +00:00
</p>
{{ post.content }}
</div>
{% endfor %}