Skip to content

Commit

Permalink
Fix: Linked correct directory, added needed i18n tags
Browse files Browse the repository at this point in the history
  • Loading branch information
katporks authored and dakotabenjamin committed Feb 26, 2024
1 parent dc84931 commit c32972e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
8 changes: 4 additions & 4 deletions hot_osm/templates/components/header/header.html
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
<header x-data="{ isMenuOpen: false, isSearchClicked: false }">
<!-- Search modal -->
{% include "/search/search_modal.html" %}
{% include "../search/search_modal.html" %}
<!-- Secondary navigation for desktop -->
{% include "/nav/secondary_desktop_nav.html" %}
{% include "../nav/secondary_desktop_nav.html" %}
<!-- Main mobile/desktop navigation -->
{% include "/header_navigation.html" %}
{% include "./header_navigation.html" %}
<!-- Mobile navigation -->
{% include "/mobile/mobile_navigation.html" %}
{% include "../mobile/mobile_navigation.html" %}
</header>
1 change: 1 addition & 0 deletions hot_osm/templates/components/nav/primary_desktop_nav.html
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
{% load i18n %}
<div class="hidden lg:block">
<nav>
<ul class="flex text-base-18 p-0 flex-row py-0 gap-x-5" aria-label="main">
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
{% load i18n %}
<div class="hidden lg:block border-b border-hot-light">
<nav class="flex h-12 mx-auto max-w-7xl px-4 justify-between items-center">
<!-- Social media icons -->
Expand Down

0 comments on commit c32972e

Please sign in to comment.