git ssb

0+

k4ml / belajar-js



Tree: 4b402e918255c2bfc77363b8e147455682c5daef

Files: 4b402e918255c2bfc77363b8e147455682c5daef / _layouts / default.html

633 bytesRaw
1<!DOCTYPE html>
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 </body>
28</html>
29

Built with git-ssb-web