| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- {% extends 'base/layout.html' %} {% block content_header %} {% include 'widget/header.html' %} {% endblock %} {% block content_main_before
- %} {% endblock %} {% block content_main %}
- <div class="row page-content">
- <div class="col-xs-12">
- <div class="row bg-title">
- <div class="col-xs-12">
- {% block content_header %} {% endblock %}
- </div>
- </div>
- <!-- /.bg-title -->
- <div class="m-t-30">
- {% include '../widget/page_content.html' %}
- </div>
- </div>
- <div class="row page-list bg-white {% if isPortal %}m-t-30{% endif %}">
- <div class="col-md-10">
- {% include '../widget/page_list_and_timeline.html' %}
- </div>
- </div>
- {# force remove #revision-toc from #content_main of parent #}
- <script>
- $('#revision-toc').remove();
- </script>
- </div> {# /.col- #}
- {# relocate #revision-toc #}
- <div class="col-lg-10 col-md-8 revision-toc-container hidden-sm hidden-xs position-absolute">
- <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- #} {% endblock %} {% block content_footer %} {% 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' %} {% include '../modal/what_is_portal.html' %} {% include '../modal/unportalize.html'
- %}
- </div>
- {% endblock %}
|