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." 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> <ul>
{% for post in site.categories.english %} {% for post in site.categories.english %}
<li> <li>
<a href="{{ post.url }}">{{ post.title }}</a> <strong><a href="{{ post.url }}">{{ post.title }}</a></strong>
{{ post.excerpt }} <p><em>{{ post.excerpt | strip_html }}</p></em>
</li> </li>
{% endfor %} {% endfor %}
</ul> </ul>
Postaukset suomeksi: * [in Finnish / Suomeksi](#suomeksi)
* [in English / Englanniksi](#in-english)
## Suomeksi
<ul> <ul>
{% for post in site.categories.finnish %} {% for post in site.categories.finnish %}
<li> <li>
<a href="{{ post.url }}">{{ post.title }}</a> <strong><a href="{{ post.url }}">{{ post.title }}</a></strong>
{{ post.excerpt }} <p><em>{{ post.excerpt | strip_html }}</p></em>
</li> </li>
{% endfor %} {% endfor %}
</ul> </ul>