12 lines
No EOL
293 B
HTML
12 lines
No EOL
293 B
HTML
{% if children -%}
|
|
{%- for child in children -%}
|
|
<div class="sidebar-item">
|
|
<a href="/{{ child.name|lower }}" class="no-decoration">
|
|
{{ child.page_title }}
|
|
{% if not child.public_read %}
|
|
(<i class="icon-fixed-width icon-lock"></i>)
|
|
{% endif %}
|
|
</a>
|
|
</div>
|
|
{%- endfor -%}
|
|
{%- endif %} |