mirror of http://localhost:9400/cloud/cms
				
				
				
			
			You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			26 lines
		
	
	
		
			886 B
		
	
	
	
		
			HTML
		
	
			
		
		
	
	
			26 lines
		
	
	
		
			886 B
		
	
	
	
		
			HTML
		
	
<div><i class="fa-solid fa-bars"></i></div>
 | 
						|
{% for _name in layout.menu %}
 | 
						|
    <div class="item">
 | 
						|
        <div>
 | 
						|
            <i class="{{layout.icons[_name]}}"></i>
 | 
						|
            {{_name}}</div>
 | 
						|
        {%if layout.menu[_name] %}
 | 
						|
        <div class="sub-menu border-round border">
 | 
						|
            
 | 
						|
           {% for _item in layout.menu[_name] %}
 | 
						|
           {%if _item.uri and _item.type not in ['dialog','embed'] %}
 | 
						|
            <div class="active" onclick="menu.apply('{{_item.uri}}','{{_item.text}}','{{_name}}')">
 | 
						|
            {%else%}
 | 
						|
                <!-- working on links/widgets -->
 | 
						|
                <div class="active" onclick='menu.apply_link({{_item|tojson}})'>
 | 
						|
            {%endif%}
 | 
						|
                <i class="fa-solid fa-chevron-right"></i>
 | 
						|
                {{_item.text}}
 | 
						|
                
 | 
						|
            </div>
 | 
						|
           {%endfor%}
 | 
						|
 | 
						|
        </div>
 | 
						|
        {%endif%}
 | 
						|
    </div>
 | 
						|
{%endfor%} |