mirror of
https://github.com/mikaela/mikaela.github.io/
synced 2024-11-09 05:29:28 +01:00
27 lines
504 B
Markdown
27 lines
504 B
Markdown
---
|
|
layout: page
|
|
title: Blog
|
|
permalink: /blog/
|
|
excerpt: "Blog index, posts in English and posts in Finnish — Blogin etusivu, postaukset englanniksi ja postaukset suomeksi."
|
|
---
|
|
|
|
Posts in English:
|
|
|
|
<ul>
|
|
{% for post in site.categories.english %}
|
|
<li>
|
|
<a href="{{ post.url }}">{{ post.title }}</a>
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
|
|
Postaukset suomeksi:
|
|
|
|
<ul>
|
|
{% for post in site.categories.finnish %}
|
|
<li>
|
|
<a href="{{ post.url }}">{{ post.title }}</a>
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|