{% extends "base.html" %} {% block title %}{{ data.title }}{% endblock %} {% block body %}

{{ data.title }}

{{ data.date | formatdatetime("%B %d, %Y") }} {{ author_name }} {%- for tag in data.tags %} #{{ tag -}} {% endfor %}

{{ content|safe }}

{% call stats(data.slug) %} {% endcall %}
{% call social_media_share(data) %}{% endcall %}
{% set previous_post = posts[index+1] %} {% if posts | length > index+1 %}
Previous Post
{{ previous_post.title }}
{% else %}
{% endif %} {% set next_post = posts[index-1] %} {% if index > 0 %}
Next Post
{{ next_post.title }}
{% else %}
{% endif %}
{% endblock %}