From cd0510ee7d94a883bf6ca3acc70d7cc046cc7348 Mon Sep 17 00:00:00 2001 From: Jeff MacKinnon Date: Fri, 4 Feb 2022 22:05:20 -0400 Subject: [PATCH] A couple of clean up changes --- templates/article.html | 19 ++++++---- templates/base.html | 78 ++++++++++++++++++++---------------------- 2 files changed, 51 insertions(+), 46 deletions(-) diff --git a/templates/article.html b/templates/article.html index ba676b5..7ea831a 100644 --- a/templates/article.html +++ b/templates/article.html @@ -12,22 +12,29 @@ {% endif %} {% if article.description %} - + {% endif %} {% for tag in article.tags %} - + {% endfor %} + + + {% if SOCIAL_TWIITER %} + + {% endif %} + + + + {% if article.photo_image %} - {% endif %} - - - + {% endif %} + {% endblock %} diff --git a/templates/base.html b/templates/base.html index e3330ef..449dc0a 100644 --- a/templates/base.html +++ b/templates/base.html @@ -1,42 +1,40 @@ - {% block head %} - {% block title %}{{ SITENAME }}{% endblock title %} - - - - {% if (article and article.photo_gallery) or (articles_page and articles_page.object_list[0].photo_gallery) %} - - {% endif %} - - {% if FEED_ALL_ATOM %} - - {% endif %} - {% if FEED_ALL_RSS %} - - {% endif %} - {% if FEED_ATOM %} - - {% endif %} - {% if FEED_RSS %} - - {% endif %} - {% if CATEGORY_FEED_ATOM and category %} - - {% endif %} - {% if CATEGORY_FEED_RSS and category %} - - {% endif %} - {% if TAG_FEED_ATOM and tag %} - - {% endif %} - {% if TAG_FEED_RSS and tag %} - - {% endif %} +{% block head %} + {% block title %}{{ SITENAME }}{% endblock title %} + + + +{% if (article and article.photo_gallery) or (articles_page and articles_page.object_list[0].photo_gallery) %} + +{% endif %} + +{% if FEED_ALL_ATOM %} + +{% endif %} +{% if FEED_ALL_RSS %} + +{% endif %} +{% if FEED_ATOM %} + +{% endif %} +{% if FEED_RSS %} + +{% endif %} +{% if CATEGORY_FEED_ATOM and category %} + +{% endif %} +{% if CATEGORY_FEED_RSS and category %} + +{% endif %} +{% if TAG_FEED_ATOM and tag %} + +{% endif %} +{% if TAG_FEED_RSS and tag %} + +{% endif %} - {% endblock head %} - - +{% endblock head %} @@ -69,11 +67,11 @@