| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- {% extends 'base/layout.html' %}
- {% block content_header %}
- {% include 'widget/header.html' %}
- {% endblock %}
- {% block content_main_before %}
- {% endblock %}
- {% block content_main %}
- <div class="row">
- <div class="col-lg-10 col-md-9">
- {% include '../widget/page_content.html' %}
- {# force remove #revision-toc from #content_main of parent #}
- <script>
- $('#revision-toc').remove();
- </script>
- </div> {# /.col- #}
- {# relocate #revision-toc #}
- <div class="col-lg-2 col-md-3 revision-toc-container hidden-sm hidden-xs">
- <div id="revision-toc" class="revision-toc" data-spy="affix" data-offset-top="80">
- <div id="revision-toc-content" class="revision-toc-content"></div>
- </div>
- </div> {# /.col- #}
- </div>
- {% if 'growi' === behaviorType() || 'crowi-plus' === behaviorType() %}
- <div class="row page-list m-t-30">
- <div class="col-md-10">
- {% include '../widget/page_list_and_timeline.html' %}
- </div>
- </div>
- {% endif %}
- {% endblock %}
- {% block content_main_after %}
- {% include 'widget/comments.html' %}
- {% if page %}
- {% include '../widget/page_attachments.html' %}
- {% endif %}
- {% endblock %}
- {% block body_end %}
- <div id="presentation-layer" class="fullscreen-layer">
- <div id="presentation-container"></div>
- </div>
- <div id="crowi-modals">
- {% include '../widget/page_modals.html' %}
- </div>
- {% endblock %}
|