mikaela.github.io/blog/index.md
Mikaela Suomalainen d3d00197a9 Add excerpts to non-blog pages
Blog pages seem to generate their meta descriptions by themselves based
on the first line.
2015-05-03 11:09:01 +03:00

27 lines
502 B
Markdown

---
layout: page
title: Blog
permalink: /blog/
excerpt: Blog index, posts in English and posts in Finnish — Blogin etusivu, postaukset englanniksi ja postaukset suomeksi.
---
Posts in English:
<ul>
{% for post in site.categories.english %}
<li>
<a href="{{ post.url }}">{{ post.title }}</a>
</li>
{% endfor %}
</ul>
Postaukset suomeksi:
<ul>
{% for post in site.categories.finnish %}
<li>
<a href="{{ post.url }}">{{ post.title }}</a>
</li>
{% endfor %}
</ul>