Blog

blog-tools has many features - let's go over them now!

blog-tools supports date sorted blog posts, with little previews

{% if blog.entries %}
{% for entry in blog.entries %}

{{ entry.title }}

{{ entry.date }}
{{entry.preview | safe}}

blog-tools also supports tags - try clicking one!

{% for tag in entry.tags %} #{{ tag }} {% endfor %}
{% endfor %}
{% else %}

No blog found

{% endif %}

You can also easily display all the tags - try clicking one!

{% for tag in blog.tags %} #{{ tag }} {% endfor %}