You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
371 B
19 lines
371 B
--- |
|
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> |
|
|
|
|