Render 4th level of mobile navigation
This commit is contained in:
@@ -129,7 +129,7 @@
|
|||||||
</f:if>
|
</f:if>
|
||||||
>
|
>
|
||||||
<div class="flex items-center justify-between">
|
<div class="flex items-center justify-between">
|
||||||
<a href="{subitemlink}"
|
<a href="{subitem.link}"
|
||||||
class="uppercase text-xl text-white hover:text-white focus:text-white"
|
class="uppercase text-xl text-white hover:text-white focus:text-white"
|
||||||
title="{subitem.title}">
|
title="{subitem.title}">
|
||||||
{subitem.title}
|
{subitem.title}
|
||||||
@@ -159,6 +159,17 @@
|
|||||||
</svg>
|
</svg>
|
||||||
<span>{subsubitem.title}</span>
|
<span>{subsubitem.title}</span>
|
||||||
</a>
|
</a>
|
||||||
|
<f:if condition="{subsubitem.children}">
|
||||||
|
<ul class="m-0 pb-2">
|
||||||
|
<f:for each="{subsubitem.children}" as="subsubsubitem">
|
||||||
|
<li class="py-1 pl-6">
|
||||||
|
<a href="{subsubsubitem.link}" title="{subitem.title}" class="text-white">
|
||||||
|
{subsubsubitem.title}
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
</f:for>
|
||||||
|
</ul>
|
||||||
|
</f:if>
|
||||||
</f:for>
|
</f:for>
|
||||||
</div>
|
</div>
|
||||||
</f:if>
|
</f:if>
|
||||||
|
|||||||
Reference in New Issue
Block a user