| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- {% 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 bg-white round-corner">
- {% include '../widget/page_content.html' %}
- {# force remove #revision-toc from #content_main of parent #}
- <script>
- $('#revision-toc').remove();
- </script>
- </div>
- {# relocate #revision-toc #}
- <div class="col-xl-3 col-lg-4 d-none d-lg-block revision-toc-container bg-white">
- <div id="revision-toc" class="revision-toc sps sps--abv" data-sps-offset="80">
- <div id="revision-toc-content" class="revision-toc-content"></div>
- </div>
- </div> {# /.col- #}
- </div>
- {% if 'growi' === getConfig('crowi', 'customize:behavior') || 'crowi-plus' === getConfig('crowi', 'customize:behavior') %}
- <div class="row page-list grw-pt-10px my-5 round-corner d-edit-none">
- <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 %}
|