25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

12 lines
295 B

  1. {%- if children -%}
  2. {%- for child in children -%}
  3. <div class="sidebar-item">
  4. <a href="/{{ child.name|lower }}" class="no-decoration">
  5. {{ child.page_title }}
  6. {% if not child.public_read %}
  7. (<i class="icon-fixed-width icon-lock"></i>)
  8. {% endif %}
  9. </a>
  10. </div>
  11. {%- endfor -%}
  12. {%- endif -%}