12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- <!doctype html>
- <html>
- <head>
- {% include head.html %}
- </head>
- <body>
- {% include navigation.html %}
- {{ content }}
- {% include footer.html %}
- <script>
- (function ($) {
- 'use strict';
- $(function () {
- var $window = $(window);
- var $body = $(document.body);
- var $sidebar = $('.s2-docs-sidebar');
- $body.scrollspy({
- target: '.s2-docs-sidebar',
- offset: 40
- });
- $window.on('load', function () {
- $body.scrollspy('refresh');
- });
- $sidebar.affix({
- offset: {
- top: function () {
- var offsetTop = $sidebar.offset().top;
- var navOuterHeight = $('.s2-docs-nav').height();
- return (this.top = offsetTop - navOuterHeight);
- },
- bottom: function () {
- return (this.bottom = $('.s2-docs-footer').outerHeight(true));
- }
- }
- });
- });
- })(jQuery);
- (function () {
- 'use strict';
- addAnchors('.s2-docs-container h1, .s2-docs-container h2, .s2-docs-container h3, .s2-docs-container h4, .s2-docs-container h5');
- })();
- </script>
- <script type="text/javascript">
- (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
- (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
- m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
- })(window,document,'script','//www.google-analytics.com/analytics.js','ga');
- ga('create', 'UA-57144786-2', 'auto');
- ga('send', 'pageview');
- </script>
- </body>
- </html>
|