layout | title |
---|---|
default |
Home |
{% for post in site.posts limit:5 %}
- [{{ post.title }}]({{ post.url }}), {{ post.date | date_to_string }}
{% if post.description %}
{{ post.description }}
{% endif %}
{% endfor %}
{% for tag in site.index.showtag %}
{% for post in site.tags[tag] %}
- [{{ post.title }}]({{ post.url }})
{% if post.description %}
{{ post.description }}
{% endif %}
{% endfor %}
{% endfor %}