Files: e55a1525fe7bf59564361af676ae8fd464b57987 / _layouts / default.html
1060 bytesRaw
1 | |
2 | <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en-us"> |
3 | |
4 | {% include head.html %} |
5 | |
6 | <body class="theme-base-08"> |
7 | |
8 | {% include sidebar.html %} |
9 | |
10 | <div class="content container"> |
11 | {{ content }} |
12 | </div> |
13 | |
14 | <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script> |
15 | <script src="{{ site.baseurl }}/public/js/toc.js"></script> |
16 | <script type="text/javascript"> |
17 | $(function() { |
18 | $('#toc').toc({ |
19 | title: "" |
20 | }); |
21 | $('#toc').hide(); |
22 | $('#toc_toggle').click(function(){ |
23 | $('#toc').toggle(); |
24 | }) |
25 | }); |
26 | </script> |
27 | <script> |
28 | (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ |
29 | (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), |
30 | m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) |
31 | })(window,document,'script','//www.google-analytics.com/analytics.js','ga'); |
32 | |
33 | ga('create', '{{ site.analytics.ga }}', 'auto'); |
34 | ga('send', 'pageview'); |
35 | |
36 | </script> |
37 | </body> |
38 | </html> |
39 |
Built with git-ssb-web