{% extends 'layout.html' %} {% set title = item.title ~ ' : Blog' %} {% block breadcrumbs %} {% endblock %} {% block content %}

{{ item.title }}

{{ item.date }}{% if item.tags %} ยป {% for tag in item.tags %}{{ tag }}{% if not loop.last %}, {% endif %}{% endfor %}{% endif %}

{{ item.content }}
{% endblock %}