mirror of
https://github.com/mikaela/mikaela.github.io/
synced 2024-11-22 12:09:28 +01:00
39 lines
868 B
HTML
39 lines
868 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
|
|
---
|
|
|
|
<ul style="list-style-type: none">
|
|
<li>Posts</li>
|
|
<li><a lang="en" href="#in-english">In English</a></li>
|
|
<li><a lang="fi" href="#suomeksi">suomeksi</a></li>
|
|
</ul>
|
|
|
|
<div lang="en">
|
|
|
|
<h2 id="in-english">In English</h2>
|
|
|
|
<dl>
|
|
{% for post in site.categories.english %}
|
|
<dt><strong><a href="{{ post.url }}">{{ post.title }}</a></strong></dt>
|
|
<dd><em>{{ post.excerpt | strip_html }}</dd>
|
|
{% endfor %}
|
|
</dl>
|
|
|
|
</div><div lang="fi">
|
|
|
|
<h2 id="suomeksi">suomeksi</h2>
|
|
|
|
<dl>
|
|
{% for post in site.categories.finnish %}
|
|
<dt><strong><a href="{{ post.url }}">{{ post.title }}</a></strong></dt>
|
|
<dd><em>{{ post.excerpt | strip_html }}</dd>
|
|
{% endfor %}
|
|
</dl>
|
|
</div>
|