author | Chloe Laisne <chloe.laisne@gmail.com> |
Sun, 02 Oct 2016 15:24:56 +0200 | |
changeset 311 | f4327199e8f0 |
parent 272 | 97c06607949b |
permissions | -rw-r--r-- |
5
d4b3da0dadc9
init ember app with 2 pages and an images
nowmad@23.1.168.192.in-addr.arpa
parents:
diff
changeset
|
1 |
<!DOCTYPE html> |
d4b3da0dadc9
init ember app with 2 pages and an images
nowmad@23.1.168.192.in-addr.arpa
parents:
diff
changeset
|
2 |
<html> |
210 | 3 |
<head> |
272
97c06607949b
Page title when track is playing
Chloe Laisne <chloe.laisne@gmail.com>
parents:
261
diff
changeset
|
4 |
<title>Corpus de la parole</title> |
210 | 5 |
|
6 |
<meta charset="utf-8"> |
|
7 |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> |
|
8 |
<meta name="description" content=""> |
|
9 |
<meta name="viewport" content="width=device-width, initial-scale=1"> |
|
5
d4b3da0dadc9
init ember app with 2 pages and an images
nowmad@23.1.168.192.in-addr.arpa
parents:
diff
changeset
|
10 |
|
210 | 11 |
{{content-for "head"}} |
5
d4b3da0dadc9
init ember app with 2 pages and an images
nowmad@23.1.168.192.in-addr.arpa
parents:
diff
changeset
|
12 |
|
261
02e2396bcbbc
Migrate to ember 2.7 + correct jquery null context error + declare shim for popcorn (instead of silencing the JSHint error)
ymh <ymh.work@gmail.com>
parents:
221
diff
changeset
|
13 |
<link rel="stylesheet" href="{{rootURL}}styles.css"> |
02e2396bcbbc
Migrate to ember 2.7 + correct jquery null context error + declare shim for popcorn (instead of silencing the JSHint error)
ymh <ymh.work@gmail.com>
parents:
221
diff
changeset
|
14 |
<link rel="stylesheet" href="{{rootURL}}assets/vendor.css"> |
02e2396bcbbc
Migrate to ember 2.7 + correct jquery null context error + declare shim for popcorn (instead of silencing the JSHint error)
ymh <ymh.work@gmail.com>
parents:
221
diff
changeset
|
15 |
<link rel="stylesheet" href="{{rootURL}}assets/app-client.css"> |
5
d4b3da0dadc9
init ember app with 2 pages and an images
nowmad@23.1.168.192.in-addr.arpa
parents:
diff
changeset
|
16 |
|
210 | 17 |
{{content-for "head-footer"}} |
18 |
</head> |
|
19 |
<body> |
|
20 |
<div class="header"> |
|
21 |
<h1>Corpus de la parole</h1> |
|
22 |
<div class="menu"> |
|
23 |
<ul class="menu_main"> |
|
24 |
<li class="sub-menu"> <a href="#/langues"> Langues </a> </li> |
|
25 |
<li class="sub-menu"> <a href="#/cartographie"> Cartographie </a> </li> |
|
26 |
<li class="sub-menu"> <a href="#/thematiques"> Thématiques </a> </li> |
|
27 |
<li class="sub-menu"> <a href="#/discours"> Discours </a> </li> |
|
28 |
<li class="sub-menu"> <a href="#/chronologie"> Chronologie </a> </li> |
|
29 |
</ul> |
|
30 |
</div> |
|
31 |
</div> |
|
5
d4b3da0dadc9
init ember app with 2 pages and an images
nowmad@23.1.168.192.in-addr.arpa
parents:
diff
changeset
|
32 |
|
210 | 33 |
{{content-for "body"}} |
34 |
||
35 |
<div id="corpus-app" class="corpus-app"></div> |
|
64
1931bbce5485
add class to the main div of the application
nowmad@23.1.168.192.in-addr.arpa
parents:
49
diff
changeset
|
36 |
|
261
02e2396bcbbc
Migrate to ember 2.7 + correct jquery null context error + declare shim for popcorn (instead of silencing the JSHint error)
ymh <ymh.work@gmail.com>
parents:
221
diff
changeset
|
37 |
<script src="{{rootURL}}assets/vendor.js"></script> |
02e2396bcbbc
Migrate to ember 2.7 + correct jquery null context error + declare shim for popcorn (instead of silencing the JSHint error)
ymh <ymh.work@gmail.com>
parents:
221
diff
changeset
|
38 |
<script src="{{rootURL}}assets/app-client.js"></script> |
02e2396bcbbc
Migrate to ember 2.7 + correct jquery null context error + declare shim for popcorn (instead of silencing the JSHint error)
ymh <ymh.work@gmail.com>
parents:
221
diff
changeset
|
39 |
<!--script src="//code.jquery.com/jquery-1.11.3.min.js"></script--> |
210 | 40 |
<script> |
41 |
$(".menu_main .sub-menu").click(function(item, bla){ |
|
42 |
$(".menu_main .sub-menu").toggleClass("active", false); |
|
43 |
$(item.currentTarget).toggleClass("active", true); |
|
44 |
}) |
|
45 |
</script> |
|
5
d4b3da0dadc9
init ember app with 2 pages and an images
nowmad@23.1.168.192.in-addr.arpa
parents:
diff
changeset
|
46 |
|
210 | 47 |
{{content-for "body-footer"}} |
48 |
</body> |
|
5
d4b3da0dadc9
init ember app with 2 pages and an images
nowmad@23.1.168.192.in-addr.arpa
parents:
diff
changeset
|
49 |
</html> |