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

{{ post.title }}

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

{{ post.content|safe }}

{% call stats(post.slug) %} {% endcall %}
{% call social_media_share(post) %}{% 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 %}