| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- {% 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>
- 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 #}
|