fmartingr.com/templates/blog/post.html
2019-09-27 19:37:28 +02:00

23 lines
724 B
HTML

{% extends "blog/_base.html" %}
{% from "macros/blog.html" import render_blog_post %}
{% from "macros/comments.html" import disqus_comments_script %}
{% block body_class %}blog post{% endblock %}
{% block page_title %}{{ super() }} | {{ this.title }}{% endblock %}
{% block main_content %}
{{ render_blog_post(this) }}
{#% if this.comments_enabled %}
<div class="comments center" id="disqus_thread"></div>
{% else %}
<div class="center block-info">
Comments have been disabled in this post, if you want to contact me please <a href="{{ '/contact'|url }}">go ahead</a>!
</div>
{% endif %#}
{% endblock %}
{% block endbody %}
{{ super() }}
{# {{ disqus_comments_script() }} #}
{% endblock %}