blog/index: if the validator likes tables...

This commit is contained in:
Aminda Suomalainen 2015-10-10 09:02:47 +03:00
parent bec577e5d6
commit a42c8baf5d
1 changed files with 20 additions and 20 deletions

View File

@ -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>