From c59dd075a49778934b4244a49a55c55fbc098efc Mon Sep 17 00:00:00 2001 From: Navan Chauhan Date: Sat, 17 Feb 2024 19:52:28 -0700 Subject: fix manifest.json link --- templates/base.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'templates') diff --git a/templates/base.html b/templates/base.html index 21dd0aa..0ff6f13 100644 --- a/templates/base.html +++ b/templates/base.html @@ -26,7 +26,7 @@ - + {% endblock %} -- cgit v1.2.3 From b62c420781c9fef75b269a38afcaad4a0b488298 Mon Sep 17 00:00:00 2001 From: Navan Chauhan Date: Sat, 17 Feb 2024 19:52:33 -0700 Subject: add 3d designs section and first 3d design post --- templates/header.html | 1 + 1 file changed, 1 insertion(+) (limited to 'templates') diff --git a/templates/header.html b/templates/header.html index 35a7bf6..097f7b4 100644 --- a/templates/header.html +++ b/templates/header.html @@ -3,6 +3,7 @@ home | about/links | posts | +3D designs | RSS Feed | -- cgit v1.2.3 From b1f76ea37e6d8d6dc949ecc4899e3a1bc6d7ef65 Mon Sep 17 00:00:00 2001 From: Navan Chauhan Date: Wed, 27 Mar 2024 22:49:15 -0600 Subject: use new theme --- templates/base.html | 24 +++++++++++++++++++----- templates/index.html | 2 +- templates/post.html | 5 ++--- templates/sidebar.html | 17 +++++++++++++++++ 4 files changed, 39 insertions(+), 9 deletions(-) create mode 100644 templates/sidebar.html (limited to 'templates') diff --git a/templates/base.html b/templates/base.html index 0ff6f13..37265f5 100644 --- a/templates/base.html +++ b/templates/base.html @@ -2,14 +2,26 @@ {% block head %} - + + + + + {% block title %}{% endblock %} + + + + + + + - {% block title %}{% endblock %} - @@ -29,9 +41,11 @@ {% endblock %} - - {% include "header.html" %} + + {% include "sidebar.html" %} +
{% block body %}{% endblock %} +
diff --git a/templates/index.html b/templates/index.html index 9f68a00..cf2ca69 100644 --- a/templates/index.html +++ b/templates/index.html @@ -6,7 +6,7 @@
{{ content}} -

Recent Posts

+

Recent Posts

    {% for post in posts[:5] %}
  • {{ post.title }}
  • diff --git a/templates/post.html b/templates/post.html index 994b661..5bb2b97 100644 --- a/templates/post.html +++ b/templates/post.html @@ -14,14 +14,13 @@ {% block twimage %}{{content.metadata.image_link}}{% endblock %} {% block body %} -
    - +
    {{ content}} +
    If you have scrolled this far, consider subscribing to my mailing list here. You can subscribe to either a specific type of post you are interested in, or subscribe to everything with the "Everything" list.
    -
    {% endblock %} diff --git a/templates/sidebar.html b/templates/sidebar.html new file mode 100644 index 0000000..57066ae --- /dev/null +++ b/templates/sidebar.html @@ -0,0 +1,17 @@ + -- cgit v1.2.3 From cc60ec40e4b90e6041ed824c892a0319fad392ad Mon Sep 17 00:00:00 2001 From: Navan Chauhan Date: Wed, 27 Mar 2024 23:36:39 -0600 Subject: random lead text --- templates/sidebar.html | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) (limited to 'templates') diff --git a/templates/sidebar.html b/templates/sidebar.html index 57066ae..7b1f82e 100644 --- a/templates/sidebar.html +++ b/templates/sidebar.html @@ -2,7 +2,7 @@ + + -- cgit v1.2.3 From a982ceab0b45609991179b3020a00260eed6f798 Mon Sep 17 00:00:00 2001 From: Navan Chauhan Date: Wed, 27 Mar 2024 23:45:59 -0600 Subject: css --- templates/base.html | 1 + 1 file changed, 1 insertion(+) (limited to 'templates') diff --git a/templates/base.html b/templates/base.html index 37265f5..d0361ce 100644 --- a/templates/base.html +++ b/templates/base.html @@ -5,6 +5,7 @@ + {% block title %}{% endblock %} -- cgit v1.2.3