blog: improve formatting

This commit is contained in:
Aminda Suomalainen 2015-07-11 11:57:34 +03:00
parent 051bd40f10
commit b4c7e77ddf
1 changed files with 12 additions and 6 deletions

View File

@ -5,24 +5,30 @@ permalink: /blog/
excerpt: "Blog index, posts in English and posts in Finnish — Blogin etusivu, postaukset englanniksi ja postaukset suomeksi."
---
Posts in English:
* [in Finnish / Suomeksi](#suomeksi)
* [in English / Englanniksi](#in-english)
## In English
<ul>
{% for post in site.categories.english %}
<li>
<a href="{{ post.url }}">{{ post.title }}</a>
{{ post.excerpt }}
<strong><a href="{{ post.url }}">{{ post.title }}</a></strong>
<p><em>{{ post.excerpt | strip_html }}</p></em>
</li>
{% endfor %}
</ul>
Postaukset suomeksi:
* [in Finnish / Suomeksi](#suomeksi)
* [in English / Englanniksi](#in-english)
## Suomeksi
<ul>
{% for post in site.categories.finnish %}
<li>
<a href="{{ post.url }}">{{ post.title }}</a>
{{ post.excerpt }}
<strong><a href="{{ post.url }}">{{ post.title }}</a></strong>
<p><em>{{ post.excerpt | strip_html }}</p></em>
</li>
{% endfor %}
</ul>