21 lines
610 B
HTML
21 lines
610 B
HTML
---
|
|
layout: default
|
|
---
|
|
<div class="home">
|
|
{{ content }}
|
|
|
|
{%- if site.posts.size > 0 -%}
|
|
<section class="articles">
|
|
<h2 class="articles__heading">Articles</h2>
|
|
<ul class="articles__list">
|
|
{%- for post in site.posts -%}
|
|
<li class="articles__article">
|
|
<a href="{{ post.url | relative_url }}">
|
|
{{ post.date | date: "%Y-%m-%d" }} - {{ post.title | escape }}
|
|
</a>
|
|
</li>
|
|
{%- endfor -%}
|
|
</ul>
|
|
</section>
|
|
{%- endif -%}
|
|
</div>
|