Render 4th level of mobile navigation
This commit is contained in:
@@ -129,7 +129,7 @@
|
||||
</f:if>
|
||||
>
|
||||
<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"
|
||||
title="{subitem.title}">
|
||||
{subitem.title}
|
||||
@@ -159,6 +159,17 @@
|
||||
</svg>
|
||||
<span>{subsubitem.title}</span>
|
||||
</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>
|
||||
</div>
|
||||
</f:if>
|
||||
|
||||
Reference in New Issue
Block a user