{% extends "kioblog/base.html" %} {% load i18n %} {% load static %} {% block title %}{{ post.title }}{% endblock %} {% block meta_title %}{{ post.meta_title }}{% endblock %} {% block meta_description %}{{ post.meta_description }}{% endblock %} {% block content %}

{{ post.category.title }}

{{ post.title }}

{{ post.user.get_full_name }} {{ post.published|date:'Y/m/d' }} · {{ post.reading_time }} min read
{% if post.image %} {{ post.title }} {% endif %}
{{ post.content_html|safe }}
{% if post.tags.all %}
{% for tag in post.tags.all %} #{{ tag.title }} {% endfor %}
{% endif %}
{% if related_posts %} {% endif %}
{% endblock %}