Skip to content

Commit

Permalink
blog: use detailed table
Browse files Browse the repository at this point in the history
  • Loading branch information
Mikaela committed May 31, 2024
1 parent 9409a79 commit 1289156
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions blog/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -18,20 +18,21 @@

<h2 id="in-english">In English</h2>

<ul style="list-style-type: none">
<dl>
{% for post in site.categories.english %}
<li><strong><a href="{{ post.url }}">{{ post.title }}</a></strong></li>
<ul style="list-style-type: none"><li><em>{{ post.excerpt | strip_html }}</li></ul>
<dt><strong><a href="{{ post.url }}">{{ post.title }}</a></strong></dt>
<dd><em>{{ post.excerpt | strip_html }}</dd>
{% endfor %}
</ul>
</dl>

</div><div lang="fi">

<h2 id="suomeksi">suomeksi</h2>

<ul style="list-style-type: none">
<dl>
{% for post in site.categories.finnish %}
<li><strong><a href="{{ post.url }}">{{ post.title }}</a></strong></li>
<ul style="list-style-type: none"><li><em>{{ post.excerpt | strip_html }}</li></ul>
<dt><strong><a href="{{ post.url }}">{{ post.title }}</a></strong></dt>
<dd><em>{{ post.excerpt | strip_html }}</dd>
{% endfor %}
</dl>
</div>

0 comments on commit 1289156

Please sign in to comment.