bune.city/index.html

21 lines
538 B
HTML

---
layout: default
title: "bune.city - Home"
---
{% include header.html %}
<h1>{{ site.title }}</h1>
<div id='main'>
<div id='posts'>
{% for post in site.posts %}
<div class='post'>
<h2><a href='{{ post.url }}'>{{ post.title }}</a></h2>
<div id='post-info'>
By {{ post.author }} <i class='material-icons'>access_time</i> Published {{ post.date | date_to_long_string: "ordinal" }}
</div>
<div class='post-excerpt'>
<p>{{ post.summary | default: post.excerpt }}</p>
</div>
</div>
{% endfor %}
</div>
</div>