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

website_group.html 856 B

123456789101112131415161718192021222324252627282930313233
  1. {% block title %}{{ title }}{% endblock %}
  2. {% block header %}
  3. <h2>{{ group.group_title }}</h2>
  4. {%- if group.group_description -%}
  5. <p class="lead">{{ group.group_description }}</p>
  6. {%- endif -%}
  7. {% endblock %}
  8. {% block content %}
  9. <ul class="nav nav-tabs view-selector">
  10. {%- for t in views -%}
  11. <li class="{% if view.name==t.name -%} active {%- endif %} {% if t.hidden -%} hide {%- endif %}"
  12. data-view="{{ t.name }}">
  13. <a href="{{ t.url or '' }}"><i class="{{ t.icon }}"></i>
  14. <span class="nav-label">{{ t.label }}</span></a>
  15. </li>
  16. {%- endfor -%}
  17. </ul>
  18. <script>
  19. {%- if access -%}
  20. website.access = {{ access|json }};
  21. {%- endif -%}
  22. website.group = "{{ group.name }}";
  23. website.view = "{{ view.name }}";
  24. </script>
  25. {% include view.template_path %}
  26. {% endblock %}
  27. {% block sidebar %}{% include "templates/includes/sidebar.html" %}{% endblock %}