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

sidebar.html 335 B

123456789101112
  1. {% if children -%}
  2. {%- for child in children -%}
  3. <div class="sidebar-item">
  4. <a href="{{ child.name }}" class="no-decoration {% if child.name == pathname %}active{% endif %}">
  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 %}