mirror of
https://github.com/mikaela/mikaela.github.io/
synced 2024-11-02 18:19:27 +01:00
46 lines
1.1 KiB
Markdown
46 lines
1.1 KiB
Markdown
---
|
|
layout: page
|
|
title: Blog
|
|
navigation: true
|
|
permalink: /blog/
|
|
excerpt: "Blog index, posts in English and posts in Finnish — Blogin etusivu, postaukset englanniksi ja postaukset suomeksi."
|
|
---
|
|
|
|
- [Posts in Finnish / Suomenkieliset kirjoitukset](#suomeksi)
|
|
|
|
## In English
|
|
|
|
_Please keep in mind that old blog posts might not reflect the current
|
|
reality or my opinions etc._
|
|
|
|
<table>
|
|
<tr>
|
|
<th>Title</th>
|
|
<th>What it's about</th>
|
|
</tr>
|
|
{% for post in site.categories.english %}
|
|
<tr>
|
|
<td><strong><a href="{{ post.url }}">{{ post.title }}</a></strong></td>
|
|
<td><em>{{ post.excerpt | strip_html }}</em></td>
|
|
</tr>
|
|
{% endfor %}
|
|
</table>
|
|
|
|
## Suomeksi
|
|
|
|
_Pidäthän mielessä etteivät vanhat blogaukseni välttämättä heijasta
|
|
todellisuutta tai nykyisiä mielipiteitäni jne._
|
|
|
|
<table>
|
|
<tr>
|
|
<th>Otsikko</th>
|
|
<th>Mistä se kertoo</th>
|
|
</tr>
|
|
{% for post in site.categories.finnish %}
|
|
<tr>
|
|
<td><strong><a href="{{ post.url }}">{{ post.title }}</a></strong></td>
|
|
<td><em>{{ post.excerpt | strip_html }}</em></td>
|
|
</tr>
|
|
{% endfor %}
|
|
</table>
|