| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- {% extends '../../layout/layout.html' %}
- {% block layout_main %}
- <div class="container-fluid">
- <div class="row bg-title">
- <div class="col-xs-12">
- {% block content_header %}
- {% endblock %}
- </div>
- </div><!-- /.bg-title -->
- <div class="row">
- <div id="main" class="main m-t-15 col-md-12 {% if page %}{{ css.grant(page) }}{% endif %} {% block main_css_class %}{% endblock %}">
- {% block content_main_before %}
- {% endblock %}
- {% block content_main %}
- {% endblock content_main %}
- {% block content_main_after %}
- {% endblock %}
- </div>
- </div>
- </div><!-- /.container-fluid -->
- <!-- Side Scroll Bar-->
- <script>
- /*
- * Disabled temporally -- 2018.06.06 Yuki Takei
- * see https://weseek.myjetbrains.com/youtrack/issue/GC-278
- *
- function DrawScrollbar() {
- var h = window.innerHeight - document.getElementById('page-header').clientHeight ;
- $('#revision-toc-content').slimScroll({
- railVisible: true,
- position: 'right',
- height: h,
- });
- }
- $(function(){
- DrawScrollbar();
- });
- (function () {
- var timer = 0;
- window.onresize = function () {
- if (timer > 0) {
- clearTimeout(timer);
- }
- timer = setTimeout(function () {
- DrawScrollbar();
- }, 200);
- };
- }());
- */
- </script>
- <footer class="footer">
- {% include '../../widget/system-version.html' %}
- </footer>
- {% endblock %} {# layout_main #}
|