選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

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