您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 
 
 

12 行
335 B

  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 %}