summaryrefslogtreecommitdiff
path: root/templates/post.html
diff options
context:
space:
mode:
authornavanchauhan <navanchauhan@gmail.com>2022-05-22 12:20:59 -0600
committernavanchauhan <navanchauhan@gmail.com>2022-05-22 12:20:59 -0600
commit6e29717df1f825e47ea39970a94a94e6bf467439 (patch)
treecf7b29e2e7822a0c83310cf9a63bcf65365c8ef9 /templates/post.html
parent798dd3c615945974bef6beec056efda78946489a (diff)
parent034d155d8ea9019e651056662f501b4c79e09883 (diff)
fixing conflicts
Diffstat (limited to 'templates/post.html')
-rw-r--r--templates/post.html15
1 files changed, 13 insertions, 2 deletions
diff --git a/templates/post.html b/templates/post.html
index 596ded2..7ee3975 100644
--- a/templates/post.html
+++ b/templates/post.html
@@ -1,8 +1,19 @@
{% extends "base.html" %}
-{% block title %}Post{% endblock %}
+
+{% 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}}
+ <div class="commentbox"></div>
+ <script src="https://unpkg.com/commentbox.io/dist/commentBox.min.js"></script>
+ <script>commentBox('5650347917836288-proj')</script>
</main>
-{% endblock %} \ No newline at end of file
+{% endblock %}