bune.city/index.html

27 lines
827 B
HTML
Raw Normal View History

2020-04-03 05:37:20 +00:00
---
layout: default
title: "bune.city - Home"
---
{% include header.html %}
<h1>{{ site.title }}</h1>
2020-04-05 08:41:13 +00:00
<main>
2020-04-03 06:30:14 +00:00
<div id='posts'>
{% for post in site.posts %}
<div class='post'>
<h2><a href='{{ post.url }}'>{{ post.title }}</a></h2>
<div id='post-info'>
<i class='material-icons'>person</i> By {{ post.author }}
<i class='material-icons'>access_time</i> Published {{ post.date | date_to_string: "ordinal" }}
<i class='material-icons'>group_work</i> Categories:
{{ " " }}{%- for category in post.categories -%}
<a href='/categories/{{ category }}'>{{ category }}</a>
{%- unless category == post.categories.last %}, {% endunless %}
{%- endfor %} <br>
2020-04-03 06:30:14 +00:00
</div>
<div class='post-excerpt'>
<p>{{ post.summary | default: post.excerpt }}</p>
</div>
</div>
{% endfor %}
2020-04-03 05:37:20 +00:00
</div>
2020-04-05 08:41:13 +00:00
</main>