page_list.html 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. {% extends 'base/layout.html' %}
  2. {% block content_header %}
  3. {% include 'widget/header.html' %}
  4. {% endblock %}
  5. {% block content_main_before%}
  6. {% endblock %}
  7. {% block content_main %}
  8. <div class="row page-content">
  9. <div class="col-xs-12 bg-white round-corner">
  10. {% include '../widget/page_content.html' %}
  11. </div>
  12. {# force remove #revision-toc from #content_main of parent #}
  13. <script>
  14. $('#revision-toc').remove();
  15. </script>
  16. </div> {# /.col- #}
  17. {# relocate #revision-toc #}
  18. <div class="col-lg-2 col-md-3 revision-toc-container hidden-sm hidden-xs">
  19. <div id="revision-toc" class="revision-toc affix" data-spy="" data-offset-top="80">
  20. <div id="revision-toc-content" class="revision-toc-content"></div>
  21. </div>
  22. </div> {# /.col- #}
  23. <div class="row page-list bg-white round-corner p-t-10 m-20 m-b-30 {% if isPortal %}m-t-30{% endif %}">
  24. <div class="col-xs-12">
  25. {% include '../widget/page_list_and_timeline_kibela.html' %}
  26. </div>
  27. </div>
  28. {% endblock %}
  29. {% block content_footer %}
  30. {% if page %}
  31. {% include '../widget/page_attachments.html' %}
  32. {% endif%}
  33. {% endblock %}
  34. {% block body_end %}
  35. <div id="presentation-layer" class="fullscreen-layer">
  36. <div id="presentation-container"></div>
  37. </div>
  38. <div id="crowi-modals">
  39. {% include '../widget/page_modals.html' %}
  40. {% include '../modal/what_is_portal.html' %}
  41. {% include '../modal/unportalize.html' %}
  42. </div>
  43. {% endblock %}