summaryrefslogtreecommitdiff
path: root/templates/post.html
blob: 48e017bf20f15d6cb9efd99d238e01caf9afb848 (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 %}Post - {{content.metadata.title}}{% endblock %}
{% block ogtitle %}Post - {{content.metadata.title}}{% endblock %}
{% block twittertitle %}Post - {{content.metadata.title}}{% endblock %}

{% block description %} {{content.metadata.description}} {% endblock %}
{% block ogdescription %} {{content.metadata.description}} {% endblock %}
{% block twitterdescription %} {{content.metadata.description}} {% endblock %}
{% block twitter2description %} {{content.metadata.description}} {% 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 %}