From 8afacfa89b01cab149ba53fc40b0bbb5fd4851fd Mon Sep 17 00:00:00 2001 From: Jonathan Bobel Date: Thu, 21 Mar 2024 12:48:36 -0400 Subject: [PATCH] Moved the and removed the comment for base.html --- app/templates/new/base.html | 45 +------------------ .../new/components/{ => head}/head.html | 0 2 files changed, 1 insertion(+), 44 deletions(-) rename app/templates/new/components/{ => head}/head.html (100%) diff --git a/app/templates/new/base.html b/app/templates/new/base.html index 88938b065..3502642bc 100644 --- a/app/templates/new/base.html +++ b/app/templates/new/base.html @@ -6,50 +6,7 @@ - {# {% include "new/components/head.html" %} #} - - - - {% block pageTitle %} - {% block per_page_title %} {% endblock %}Notify.gov - <!-- on templates that were using content_template.html, we might need to use the {{ content_page_title }} variable for the per_page_title --> - {% endblock %} - - - - - {% if config['NR_MONITOR_ON'] %} - {% include "partials/newrelic.html" -%} - {% endif %} - {# Ensure that older IE versions always render with the correct rendering engine #} - - {% block headIcons %} - - - - - {% endblock %} - - {% block head %} - - {% block extra_stylesheets %} - {% endblock %} - {% if g.hide_from_search_engines %} - - {% endif %} - - {# The default og:image is added below head so that scrapers see any custom metatags first, and this is just a fallback #} - {% block meta_format_detection %} - - {% endblock %} - {% block meta %} - - - {% endblock %} - - {% endblock %} - - + {% include "new/components/head/head.html" %} {% block bodyStart %} diff --git a/app/templates/new/components/head.html b/app/templates/new/components/head/head.html similarity index 100% rename from app/templates/new/components/head.html rename to app/templates/new/components/head/head.html