New layout

This commit is contained in:
Felipe M 2020-01-12 20:26:01 +01:00
parent 440e7a3994
commit f6a070f084
Signed by: fmartingr
GPG key ID: 716BC147715E716F
45 changed files with 661 additions and 758 deletions

View file

@ -1,3 +1,3 @@
{% extends "_base.html" %}
{% block page_title %}{{ super() }} | Blog{% endblock %}
{% block page_title %}Blog | {{ super() }}{% endblock %}

View file

@ -3,15 +3,15 @@
{% block body_class %}blog post{% endblock %}
{% block page_title %}{{ super() }} | {{ this.title }}{% endblock %}
{% block page_title %}{{ this.title }} | {{ super() }}{% endblock %}
{% block main_content %}
{{ render_blog_post(this) }}
{% if this.children.get("gallery") %}
{{ render_gallery(this) }}
{% endif %}
<div class="center block-info">
Comments have been disabled in this blog. If you want to contact me directly please use the information at the bottom of the page.
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 %}