mirror of
https://github.com/Lapikud/lapikud.github.io.git
synced 2026-03-21 12:37:49 +00:00
Created basic Jekyll blog
This commit is contained in:
19
blog.html
Normal file
19
blog.html
Normal file
@@ -0,0 +1,19 @@
|
||||
---
|
||||
layout: default
|
||||
title: Blogi
|
||||
---
|
||||
|
||||
<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>
|
||||
|
||||
Reference in New Issue
Block a user