diff options
| author | navanchauhan <navanchauhan@gmail.com> | 2022-12-30 18:58:30 -0500 | 
|---|---|---|
| committer | navanchauhan <navanchauhan@gmail.com> | 2022-12-30 18:58:30 -0500 | 
| commit | 28a54e527ba7a6908ed36e524f8431ac9519d770 (patch) | |
| tree | 32d8e6d7840661c88c105f373da4030f99292ae7 /templates/post.html | |
| parent | b46cbdcfbdb41f10f022c2ae9c165f4348c957e2 (diff) | |
add support for custom og images
Diffstat (limited to 'templates/post.html')
| -rw-r--r-- | templates/post.html | 5 | 
1 files changed, 2 insertions, 3 deletions
| diff --git a/templates/post.html b/templates/post.html index 0a66046..f229d70 100644 --- a/templates/post.html +++ b/templates/post.html @@ -8,6 +8,8 @@  {% block ogdescription %}{{content.metadata.description}}{% endblock %}  {% block twitterdescription %}{{content.metadata.description}}{% endblock %}  {% block twitter2description %}summary_large_image{% endblock %} +{% block ogimage %}{{content.metadata.image_link}}{% endblock %} +{% block twimage %}{{content.metadata.image_link}}{% endblock %}  {% block body %}  <main> @@ -19,8 +21,5 @@  	<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 %} | 
