blog-tools
has many features - let's go over them now!
blog-tools
supports date sorted blog posts, with little previews
{% for entry in blog.entries %}
{% endfor %}
{% else %}
{{ entry.title }}
{{ entry.date }}
{{entry.preview | safe}}
blog-tools
also supports tags - try clicking one!
{% for tag in entry.tags %}
#{{ tag }}
{% endfor %}
No blog found
{% endif %}You can also easily display all the tags - try clicking one!
{% for tag in blog.tags %}
#{{ tag }}
{% endfor %}