From d23479efddb303591bd79f00c5578327c8a4f8b8 Mon Sep 17 00:00:00 2001 From: navanchauhan Date: Mon, 28 Jun 2021 16:30:01 +0530 Subject: adding description to link previews --- templates/base.html | 22 +++++++++++----------- templates/post.html | 10 +++++++++- 2 files changed, 20 insertions(+), 12 deletions(-) (limited to 'templates') diff --git a/templates/base.html b/templates/base.html index 2a48404..378759b 100644 --- a/templates/base.html +++ b/templates/base.html @@ -8,20 +8,20 @@ Hey - {% block title %}{% endblock %} - - - - - - - - - + + + + + + + + + - - + + diff --git a/templates/post.html b/templates/post.html index 596ded2..fd3bd4c 100644 --- a/templates/post.html +++ b/templates/post.html @@ -1,5 +1,13 @@ {% 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 %}
-- cgit v1.2.3 From 12700e08fb6aaed778e209b0292590912864688e Mon Sep 17 00:00:00 2001 From: navanchauhan Date: Fri, 24 Dec 2021 22:58:16 -0700 Subject: added plausible analytics --- templates/head_tag.html | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'templates') diff --git a/templates/head_tag.html b/templates/head_tag.html index 586cbf8..498c3e2 100644 --- a/templates/head_tag.html +++ b/templates/head_tag.html @@ -16,4 +16,5 @@ - \ No newline at end of file + + -- cgit v1.2.3 From 568ea8263fce8ca30c080dd78e3ee15d734978af Mon Sep 17 00:00:00 2001 From: navanchauhan Date: Fri, 24 Dec 2021 23:01:05 -0700 Subject: updated template --- templates/base.html | 1 + 1 file changed, 1 insertion(+) (limited to 'templates') diff --git a/templates/base.html b/templates/base.html index 378759b..b3cb1b1 100644 --- a/templates/base.html +++ b/templates/base.html @@ -25,6 +25,7 @@ + {% endblock %} -- cgit v1.2.3 From a4c1783a8479be47614112f90c4e8c77aa1c3b9c Mon Sep 17 00:00:00 2001 From: navanchauhan Date: Wed, 29 Dec 2021 16:08:08 -0700 Subject: added commentbox comments --- templates/post.html | 3 +++ 1 file changed, 3 insertions(+) (limited to 'templates') diff --git a/templates/post.html b/templates/post.html index fd3bd4c..b21547f 100644 --- a/templates/post.html +++ b/templates/post.html @@ -12,5 +12,8 @@ {% block body %}
{{ content}} +
+ +
{% endblock %} \ No newline at end of file -- cgit v1.2.3 From 6c2b440d80034cb0c966fd03586dba8fa267b9b3 Mon Sep 17 00:00:00 2001 From: navanchauhan Date: Mon, 3 Jan 2022 00:20:06 -0700 Subject: added comment box id --- templates/post.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'templates') diff --git a/templates/post.html b/templates/post.html index b21547f..7ee3975 100644 --- a/templates/post.html +++ b/templates/post.html @@ -14,6 +14,6 @@ {{ content}}
- +
-{% endblock %} \ No newline at end of file +{% endblock %} -- cgit v1.2.3 From 76ea3fd55278f681b652ce10043bd263864071d8 Mon Sep 17 00:00:00 2001 From: navanchauhan Date: Sat, 23 Apr 2022 02:00:34 -0600 Subject: added plausible --- templates/base.html | 3 ++- templates/head_tag.html | 2 ++ 2 files changed, 4 insertions(+), 1 deletion(-) (limited to 'templates') diff --git a/templates/base.html b/templates/base.html index b3cb1b1..caca658 100644 --- a/templates/base.html +++ b/templates/base.html @@ -26,6 +26,7 @@ + {% endblock %} @@ -35,4 +36,4 @@ - \ No newline at end of file + diff --git a/templates/head_tag.html b/templates/head_tag.html index 498c3e2..778bf81 100644 --- a/templates/head_tag.html +++ b/templates/head_tag.html @@ -18,3 +18,5 @@ + + -- cgit v1.2.3 From 885747d29973e3a1b04a68bc40a3e72ca0b711e7 Mon Sep 17 00:00:00 2001 From: navanchauhan Date: Sun, 22 May 2022 11:10:19 -0600 Subject: removed trailing comma --- templates/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'templates') diff --git a/templates/index.html b/templates/index.html index cc66cd3..a651ea2 100644 --- a/templates/index.html +++ b/templates/index.html @@ -14,7 +14,7 @@
  • Published On: {{post.date}}
  • Tags: {% for tag in post.tags %} - {{ tag }}, + {{ tag }}{{ ", " if not loop.last else "" }} {% endfor %} -- cgit v1.2.3