27 lines
No EOL
827 B
HTML
27 lines
No EOL
827 B
HTML
---
|
|
layout: default
|
|
title: "bune.city - Home"
|
|
---
|
|
{% include header.html %}
|
|
<h1>{{ site.title }}</h1>
|
|
<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'>
|
|
<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>
|
|
</div>
|
|
<div class='post-excerpt'>
|
|
<p>{{ post.summary | default: post.excerpt }}</p>
|
|
</div>
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
</main> |