equal
deleted
inserted
replaced
8 <meta name="description" content=""> |
8 <meta name="description" content=""> |
9 <meta name="viewport" content="width=device-width, initial-scale=1"> |
9 <meta name="viewport" content="width=device-width, initial-scale=1"> |
10 |
10 |
11 {{content-for "head"}} |
11 {{content-for "head"}} |
12 |
12 |
13 <link rel="stylesheet" href="styles.css"> |
13 <link rel="stylesheet" href="{{rootURL}}styles.css"> |
14 <link rel="stylesheet" href="assets/vendor.css"> |
14 <link rel="stylesheet" href="{{rootURL}}assets/vendor.css"> |
15 <link rel="stylesheet" href="assets/app-client.css"> |
15 <link rel="stylesheet" href="{{rootURL}}assets/app-client.css"> |
16 |
16 |
17 {{content-for "head-footer"}} |
17 {{content-for "head-footer"}} |
18 </head> |
18 </head> |
19 <body> |
19 <body> |
20 <div class="header"> |
20 <div class="header"> |
32 |
32 |
33 {{content-for "body"}} |
33 {{content-for "body"}} |
34 |
34 |
35 <div id="corpus-app" class="corpus-app"></div> |
35 <div id="corpus-app" class="corpus-app"></div> |
36 |
36 |
37 <script src="assets/vendor.js"></script> |
37 <script src="{{rootURL}}assets/vendor.js"></script> |
38 <script src="assets/app-client.js"></script> |
38 <script src="{{rootURL}}assets/app-client.js"></script> |
39 <script src="//code.jquery.com/jquery-1.11.3.min.js"></script> |
39 <!--script src="//code.jquery.com/jquery-1.11.3.min.js"></script--> |
40 <script> |
40 <script> |
41 $(".menu_main .sub-menu").click(function(item, bla){ |
41 $(".menu_main .sub-menu").click(function(item, bla){ |
42 $(".menu_main .sub-menu").toggleClass("active", false); |
42 $(".menu_main .sub-menu").toggleClass("active", false); |
43 $(item.currentTarget).toggleClass("active", true); |
43 $(item.currentTarget).toggleClass("active", true); |
44 }) |
44 }) |