mirror of
https://github.com/Lapikud/lapikud.github.io.git
synced 2026-03-21 04:27:48 +00:00
20 lines
390 B
HTML
20 lines
390 B
HTML
---
|
|
layout: default
|
|
title: Blogi - Lapikud
|
|
---
|
|
|
|
<div class="page">
|
|
{%- for post in site.posts -%}
|
|
{%- assign date_format = "%F" -%}
|
|
<h3>
|
|
<a class="post-link" href="{{ post.url | relative_url }}">
|
|
{{ post.title | escape }}
|
|
</a>
|
|
</h3>
|
|
{{ post.excerpt }}
|
|
<h5>{{ post.date | date: date_format }}
|
|
</h5>
|
|
{%- endfor -%}
|
|
</div>
|
|
|