fmartingr.com/templates/blog/post.html
2020-01-12 20:26:01 +01:00

20 lines
692 B
HTML

{% extends "blog/_base.html" %}
{% from "macros/blog.html" import render_blog_post, render_gallery %}
{% block body_class %}blog post{% endblock %}
{% block page_title %}{{ this.title }} | {{ super() }}{% endblock %}
{% block main_content %}
{{ render_blog_post(this) }}
<div class="center block-info">
In order to make a public comment on this entry please use
<a href="mailto:~fmartingr/fmartingr.com@lists.sr.ht?subject=Re: {{ this.title }}">the mailing list</a>
and if you want to approach me directly use the most appropriate channel from
<a href="{{ '/about'|url }}">the about page</a>.
</div>
{% endblock %}
{% block endbody %}
{{ super() }}
{% endblock %}