We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 294ecfe + 47be34f commit b2ba75aCopy full SHA for b2ba75a
app/home/templates/home/components/navbar.html
@@ -63,7 +63,11 @@
63
class="menu menu-sm dropdown-content bg-base-100 rounded-box z-[1] mt-3 w-64 p-2 shadow" style="left: -400%; z-index: 1000;">
64
{% for item in navigation_items %}
65
<li class="relative">
66
+ {% if item.external_url %}
67
+ <a href="{{ item.external_url }}" class="font-bantayog">{{ item }}</a>
68
+ {% else %}
69
<a class="font-bantayog">{{ item }}</a>
70
+ {% endif %}
71
<ul class="p-2">
72
{% for child in item.children.all %}
73
<li>
0 commit comments