{% extends 'base.html.twig' %}
{% block title_tag %}
{{- post.titleTag -}}
{% endblock %}
{% block description_tag %}
{{- post.descriptionTag -}}
{% endblock %}
{% block content %}
{% cache 'content;' ~ postIdentifier ttl(31536000) %}
{{post.content | raw}}
{{ include('blog/_related.html.twig') }}
{{ include('blog/_author.html.twig') }}
{% endcache %}
{% cache 'content_aside;' ~ postIdentifier ttl(31536000) %}
{{ include('blog/_share.html.twig') }}
{% endcache %}
{% endblock %}
{% block letstalk_banner %}
{% cache 'letstalk_banner;' ~ postIdentifier ttl(31536000) %}
{% if letstalkType %}
{{ include('blocks/letstalk_banner/_letstalk_banner_' ~ letstalkType ~ '.html.twig') }}
{% endif %}
{% endcache %}
{% endblock %}