diff options
author | navanchauhan <navanchauhan@gmail.com> | 2022-05-22 12:20:59 -0600 |
---|---|---|
committer | navanchauhan <navanchauhan@gmail.com> | 2022-05-22 12:20:59 -0600 |
commit | 6e29717df1f825e47ea39970a94a94e6bf467439 (patch) | |
tree | cf7b29e2e7822a0c83310cf9a63bcf65365c8ef9 /templates/post.html | |
parent | 798dd3c615945974bef6beec056efda78946489a (diff) | |
parent | 034d155d8ea9019e651056662f501b4c79e09883 (diff) |
fixing conflicts
Diffstat (limited to 'templates/post.html')
-rw-r--r-- | templates/post.html | 15 |
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 %} |