mirror of
https://github.com/mikaela/mikaela.github.io/
synced 2024-12-26 05:02:37 +01:00
blog: improve formatting
This commit is contained in:
parent
051bd40f10
commit
b4c7e77ddf
@ -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>
|
||||||
|
Loading…
Reference in New Issue
Block a user