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 | 8b56f067823153f21fafac102bfa05ac41110983 (patch) | |
tree | 380534dda0e3d17c51dbe7a0643fffb418d4e5b1 /templates/post.html | |
parent | 2e510fedcfb58d99b7bf63cb908ea5107dd96433 (diff) | |
parent | 27dc62cf3bd9686f30d66071701b3d2558874090 (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 %} |