{% extends "base.html" %} {% block title %}{{ post.title }} | {{ site.config.title }}{% endblock %} {% block content %} {% set has_sidebar = site.config.extra.author_profile | default(value=false) %} {% set show_share = site.config.extra.post_share | default(value=true) %} {% set show_related = site.config.extra.post_related | default(value=true) %} {% set show_toc = site.config.extra.post_toc | default(value=true) %} {% set show_breadcrumbs = site.config.extra.post_breadcrumbs | default(value=true) %}
{% if has_sidebar %} {% endif %}
{% if show_breadcrumbs %}{% include "partials/post_breadcrumbs.html" %}{% endif %} {% include "partials/post_header.html" %} {% include "partials/post_hero_image.html" %} {% if show_toc %}{% include "partials/post_toc.html" %}{% endif %}
{{ post.content | safe }}
{% if show_share %}{% include "partials/post_share.html" %}{% endif %} {% if show_related %}{% include "partials/post_related.html" %}{% endif %}
{% endblock %}