mirror of
https://github.com/mikaela/mikaela.github.io/
synced 2024-11-06 03:59:26 +01:00
45 lines
904 B
HTML
45 lines
904 B
HTML
---
|
|
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."
|
|
lang: en
|
|
robots: noai
|
|
---
|
|
|
|
<p>
|
|
Posts
|
|
<a
|
|
lang="en"
|
|
href="#in-english"
|
|
>in English here</a
|
|
>
|
|
&
|
|
<a
|
|
lang="fi"
|
|
href="#suomeksi"
|
|
>suomeksi täällä</a
|
|
>.
|
|
</p>
|
|
<hr />
|
|
<div lang="en">
|
|
<h2 id="in-english">In English</h2>
|
|
|
|
{% for post in site.categories.english %}
|
|
<h3><a href="{{ post.url }}">{{ post.title }}</a></h3>
|
|
<p>{{ post.date | date: "%F" }}: {{ post.excerpt | strip_html }}</p>
|
|
{% endfor %}
|
|
</div>
|
|
<hr />
|
|
<br />
|
|
<div lang="fi">
|
|
<h2 id="suomeksi">suomeksi</h2>
|
|
{% for post in site.categories.finnish %}
|
|
<h3><a href="{{ post.url }}">{{ post.title }}</a></h3>
|
|
<p>{{ post.date | date: "%F" }}: {{ post.excerpt | strip_html }}</p>
|
|
{% endfor %}
|
|
</div>
|