mirror of
https://github.com/mikaela/mikaela.github.io/
synced 2024-12-25 12:42:34 +01:00
blog/index: if the validator likes tables...
This commit is contained in:
parent
bec577e5d6
commit
a42c8baf5d
@ -9,30 +9,30 @@ excerpt: "Blog index, posts in English and posts in Finnish — Blogin etusivu,
|
|||||||
|
|
||||||
## In English
|
## In English
|
||||||
|
|
||||||
<ul>
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Title</th>
|
||||||
|
<th>What it's about</th>
|
||||||
|
</tr>
|
||||||
{% for post in site.categories.english %}
|
{% for post in site.categories.english %}
|
||||||
<li>
|
<tr>
|
||||||
<strong><a href="{{ post.url }}">{{ post.title }}</a></strong>
|
<td><strong><a href="{{ post.url }}">{{ post.title }}</a></strong></td>
|
||||||
</li>
|
<td><em>{{ post.excerpt | strip_html }}</em></td>
|
||||||
<ul>
|
</tr>
|
||||||
<li>
|
|
||||||
<p><em>{{ post.excerpt | strip_html }}</em></p>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</ul>
|
</table>
|
||||||
|
|
||||||
## Suomeksi
|
## Suomeksi
|
||||||
|
|
||||||
<ul>
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Otsikko</th>
|
||||||
|
<th>Mistä se kertoo</th>
|
||||||
|
</tr>
|
||||||
{% for post in site.categories.finnish %}
|
{% for post in site.categories.finnish %}
|
||||||
<li>
|
<tr>
|
||||||
<strong><a href="{{ post.url }}">{{ post.title }}</a></strong>
|
<td><strong><a href="{{ post.url }}">{{ post.title }}</a></strong></td>
|
||||||
</li>
|
<td><em>{{ post.excerpt | strip_html }}</em></td>
|
||||||
<ul>
|
</tr>
|
||||||
<li>
|
|
||||||
<p><em>{{ post.excerpt | strip_html }}</em></p>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</ul>
|
</table>
|
||||||
|
Loading…
Reference in New Issue
Block a user