summaryrefslogtreecommitdiff
path: root/templates/post.html
blob: 0a660465b8a52c49e556b0f9a68198a0da8c71da (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{% extends "base.html" %}

{% block title %}{{content.metadata.title}}{% endblock %}
{% block ogtitle %}{{content.metadata.title}}{% endblock %}
{% block twittertitle %}{{content.metadata.title}}{% endblock %}

{% block description %}{{content.metadata.description}}{% endblock %}
{% block ogdescription %}{{content.metadata.description}}{% endblock %}
{% block twitterdescription %}{{content.metadata.description}}{% endblock %}
{% block twitter2description %}summary_large_image{% endblock %}

{% block body %}
<main>

	{{ content}}
	<blockquote>If you have scrolled this far, consider subscribing to my mailing list <a href="https://listmonk.navan.dev/subscription/form">here.</a> You can subscribe to either a specific type of post you are interested in, or subscribe to everything with the "Everything" list.</blockquote>
	<script data-isso="//comments.navan.dev/"
        src="//comments.navan.dev/js/embed.min.js"></script>
	<section id="isso-thread">
	    <noscript>Javascript needs to be activated to view comments.</noscript>
	</section>
	<!--<div class="commentbox"></div>
	<script src="https://unpkg.com/commentbox.io/dist/commentBox.min.js"></script>
	<script>commentBox('5650347917836288-proj')</script>-->
</main>
{% endblock %}