15 lines
319 B
HTML
15 lines
319 B
HTML
|
---
|
||
|
layout: default
|
||
|
title: "bune.city - Home"
|
||
|
---
|
||
|
{% include header.html %}
|
||
|
<h1>{{ site.title }}</h1>
|
||
|
<div id='posts'>
|
||
|
{% for post in site.posts %}
|
||
|
<div class='post'>
|
||
|
<h2><a href='{{ post.url }}'>{{ post.title }}</a></h2>
|
||
|
<i class='material-icons'>face</i>
|
||
|
<p>{{ post.excerpt }}</p>
|
||
|
</div>
|
||
|
{% endfor %}
|
||
|
</div>
|