identical-path-page.html 750 B

123456789101112131415161718192021222324252627282930
  1. {% extends 'base/layout.html' %}
  2. {% block content_main_before %}
  3. {% endblock %}
  4. {% block content_main %}
  5. <div class="grw-container-convertible">
  6. <div id="content-main" class="content-main d-flex"
  7. data-path="{{ encodeURI(path) }}"
  8. data-current-user="{% if user %}{{ user._id.toString() }}{% endif %}"
  9. data-page-is-not-creatable="true"
  10. data-identical-path="true"
  11. >
  12. <div class="flex-grow-1 flex-basis-0 mw-0">
  13. <div
  14. id="identical-path-page"
  15. data-identical-path-pages="{{ identicalPathPages|json }}"
  16. ></div>
  17. </div>
  18. <div id="page-context"></div>
  19. </div>
  20. </div>
  21. {% endblock %}
  22. {% block content_footer %}
  23. <div id="page-content-footer"></div>
  24. {% endblock %}