Brandmark link uses relative path

This commit is contained in:
sdarwin
2023-08-10 09:56:02 -06:00
committed by Sam Darwin
parent fcec414638
commit c8d7fd5973

View File

@@ -10,11 +10,11 @@
<div class="w-[100px]">
<a href="{% url 'home' %}">
<img class="hidden w-auto dark:inline-block h-[25px] -mb-[1px]"
src="{{ request.scheme }}://{{ request.get_host }}{% static 'img/Boost_Brandmark_WhiteBoost_Transparent.svg' %}"
src="{% static 'img/Boost_Brandmark_WhiteBoost_Transparent.svg' %}"
alt="Boost">
<img class="inline-block w-auto dark:hidden h-[25px] -mb-[1px]"
src="{{ request.scheme }}://{{ request.get_host }}{% static 'img/Boost_Brandmark_BlackBoost_Transparent.svg' %}"
src="{% static 'img/Boost_Brandmark_BlackBoost_Transparent.svg' %}"
alt="Boost">
</a>
</div>