|
|
@@ -0,0 +1,43 @@
|
|
|
+{% extends 'base/layout.html' %}
|
|
|
+
|
|
|
+
|
|
|
+{% block content_header %}
|
|
|
+ <h1 class="p-3">{{ encodeURI(page.path) }}</h1>
|
|
|
+{% endblock %}
|
|
|
+
|
|
|
+
|
|
|
+{% block content_main_before %}
|
|
|
+{% endblock %}
|
|
|
+{% block search %}
|
|
|
+{% endblock %}
|
|
|
+{% block head_warn_alert_siteurl_undefined %}
|
|
|
+{% endblock %}
|
|
|
+
|
|
|
+{% block content_main %}
|
|
|
+ <div class="row" id="is-shared-page">
|
|
|
+ <div class="col-12 col-xl-9 col-lg-8 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">
|
|
|
+ <div id="revision-toc" class="revision-toc mt-3 sps sps--abv" data-sps-offset="123">
|
|
|
+ <div id="revision-toc-content" class="revision-toc-content"></div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ </div>
|
|
|
+{% endblock %}
|
|
|
+
|
|
|
+
|
|
|
+{% block body_end %}
|
|
|
+ <div id="presentation-layer" class="fullscreen-layer">
|
|
|
+ <div id="presentation-container"></div>
|
|
|
+ </div>
|
|
|
+{% endblock %}
|