author | Chloe Laisne <chloe.laisne@gmail.com> |
Thu, 23 Jun 2016 11:35:26 +0200 | |
changeset 199 | b7c691c6179d |
parent 155 | 76ae75975ee2 |
child 210 | 08ad36c693b1 |
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> |
d4b3da0dadc9
init ember app with 2 pages and an images
nowmad@23.1.168.192.in-addr.arpa
parents:
diff
changeset
|
3 |
<head> |
d4b3da0dadc9
init ember app with 2 pages and an images
nowmad@23.1.168.192.in-addr.arpa
parents:
diff
changeset
|
4 |
<meta charset="utf-8"> |
d4b3da0dadc9
init ember app with 2 pages and an images
nowmad@23.1.168.192.in-addr.arpa
parents:
diff
changeset
|
5 |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> |
d4b3da0dadc9
init ember app with 2 pages and an images
nowmad@23.1.168.192.in-addr.arpa
parents:
diff
changeset
|
6 |
<title>AppClient</title> |
d4b3da0dadc9
init ember app with 2 pages and an images
nowmad@23.1.168.192.in-addr.arpa
parents:
diff
changeset
|
7 |
<meta name="description" content=""> |
d4b3da0dadc9
init ember app with 2 pages and an images
nowmad@23.1.168.192.in-addr.arpa
parents:
diff
changeset
|
8 |
<meta name="viewport" content="width=device-width, initial-scale=1"> |
d4b3da0dadc9
init ember app with 2 pages and an images
nowmad@23.1.168.192.in-addr.arpa
parents:
diff
changeset
|
9 |
|
155 | 10 |
{{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
|
11 |
|
d4b3da0dadc9
init ember app with 2 pages and an images
nowmad@23.1.168.192.in-addr.arpa
parents:
diff
changeset
|
12 |
<link rel="stylesheet" href="styles.css"> |
d4b3da0dadc9
init ember app with 2 pages and an images
nowmad@23.1.168.192.in-addr.arpa
parents:
diff
changeset
|
13 |
|
d4b3da0dadc9
init ember app with 2 pages and an images
nowmad@23.1.168.192.in-addr.arpa
parents:
diff
changeset
|
14 |
<link rel="stylesheet" href="assets/vendor.css"> |
d4b3da0dadc9
init ember app with 2 pages and an images
nowmad@23.1.168.192.in-addr.arpa
parents:
diff
changeset
|
15 |
<link rel="stylesheet" href="assets/app-client.css"> |
d4b3da0dadc9
init ember app with 2 pages and an images
nowmad@23.1.168.192.in-addr.arpa
parents:
diff
changeset
|
16 |
|
155 | 17 |
{{content-for "head-footer"}} |
5
d4b3da0dadc9
init ember app with 2 pages and an images
nowmad@23.1.168.192.in-addr.arpa
parents:
diff
changeset
|
18 |
</head> |
d4b3da0dadc9
init ember app with 2 pages and an images
nowmad@23.1.168.192.in-addr.arpa
parents:
diff
changeset
|
19 |
<body> |
d4b3da0dadc9
init ember app with 2 pages and an images
nowmad@23.1.168.192.in-addr.arpa
parents:
diff
changeset
|
20 |
<div class="header"> |
d4b3da0dadc9
init ember app with 2 pages and an images
nowmad@23.1.168.192.in-addr.arpa
parents:
diff
changeset
|
21 |
<h1>Corpus de la parole</h1> |
d4b3da0dadc9
init ember app with 2 pages and an images
nowmad@23.1.168.192.in-addr.arpa
parents:
diff
changeset
|
22 |
<div class="menu"> |
d4b3da0dadc9
init ember app with 2 pages and an images
nowmad@23.1.168.192.in-addr.arpa
parents:
diff
changeset
|
23 |
<ul class="menu_main"> |
49
66739650678f
update main index to add the 2 kind of menu (hash and history) and set the locationType to hash
nowmad@nowmads-macbook-pro.local
parents:
16
diff
changeset
|
24 |
<li class="sub-menu"> <a href="#/langues"> Langues </a> </li> |
66739650678f
update main index to add the 2 kind of menu (hash and history) and set the locationType to hash
nowmad@nowmads-macbook-pro.local
parents:
16
diff
changeset
|
25 |
<li class="sub-menu"> <a href="#/cartographie"> Cartographie </a> </li> |
66739650678f
update main index to add the 2 kind of menu (hash and history) and set the locationType to hash
nowmad@nowmads-macbook-pro.local
parents:
16
diff
changeset
|
26 |
<li class="sub-menu"> <a href="#/thematiques"> Thématiques </a> </li> |
66739650678f
update main index to add the 2 kind of menu (hash and history) and set the locationType to hash
nowmad@nowmads-macbook-pro.local
parents:
16
diff
changeset
|
27 |
<li class="sub-menu"> <a href="#/discours"> Discours </a> </li> |
66739650678f
update main index to add the 2 kind of menu (hash and history) and set the locationType to hash
nowmad@nowmads-macbook-pro.local
parents:
16
diff
changeset
|
28 |
<li class="sub-menu"> <a href="#/chronologie"> Chronologie </a> </li> |
66739650678f
update main index to add the 2 kind of menu (hash and history) and set the locationType to hash
nowmad@nowmads-macbook-pro.local
parents:
16
diff
changeset
|
29 |
</ul> |
5
d4b3da0dadc9
init ember app with 2 pages and an images
nowmad@23.1.168.192.in-addr.arpa
parents:
diff
changeset
|
30 |
</div> |
d4b3da0dadc9
init ember app with 2 pages and an images
nowmad@23.1.168.192.in-addr.arpa
parents:
diff
changeset
|
31 |
</div> |
155 | 32 |
{{content-for "body"}} |
5
d4b3da0dadc9
init ember app with 2 pages and an images
nowmad@23.1.168.192.in-addr.arpa
parents:
diff
changeset
|
33 |
|
64
1931bbce5485
add class to the main div of the application
nowmad@23.1.168.192.in-addr.arpa
parents:
49
diff
changeset
|
34 |
<div id="corpus-app" class="corpus-app"></div> |
1931bbce5485
add class to the main div of the application
nowmad@23.1.168.192.in-addr.arpa
parents:
49
diff
changeset
|
35 |
|
5
d4b3da0dadc9
init ember app with 2 pages and an images
nowmad@23.1.168.192.in-addr.arpa
parents:
diff
changeset
|
36 |
<script src="assets/vendor.js"></script> |
d4b3da0dadc9
init ember app with 2 pages and an images
nowmad@23.1.168.192.in-addr.arpa
parents:
diff
changeset
|
37 |
<script src="assets/app-client.js"></script> |
49
66739650678f
update main index to add the 2 kind of menu (hash and history) and set the locationType to hash
nowmad@nowmads-macbook-pro.local
parents:
16
diff
changeset
|
38 |
<script src="//code.jquery.com/jquery-1.11.3.min.js"></script> |
66739650678f
update main index to add the 2 kind of menu (hash and history) and set the locationType to hash
nowmad@nowmads-macbook-pro.local
parents:
16
diff
changeset
|
39 |
<script> |
75 | 40 |
$(".menu_main .sub-menu").click(function(item, bla){ |
41 |
$(".menu_main .sub-menu").toggleClass("active", false); |
|
42 |
$(item.currentTarget).toggleClass("active", true); |
|
49
66739650678f
update main index to add the 2 kind of menu (hash and history) and set the locationType to hash
nowmad@nowmads-macbook-pro.local
parents:
16
diff
changeset
|
43 |
}) |
66739650678f
update main index to add the 2 kind of menu (hash and history) and set the locationType to hash
nowmad@nowmads-macbook-pro.local
parents:
16
diff
changeset
|
44 |
</script> |
5
d4b3da0dadc9
init ember app with 2 pages and an images
nowmad@23.1.168.192.in-addr.arpa
parents:
diff
changeset
|
45 |
|
155 | 46 |
{{content-for "body-footer"}} |
5
d4b3da0dadc9
init ember app with 2 pages and an images
nowmad@23.1.168.192.in-addr.arpa
parents:
diff
changeset
|
47 |
</body> |
d4b3da0dadc9
init ember app with 2 pages and an images
nowmad@23.1.168.192.in-addr.arpa
parents:
diff
changeset
|
48 |
</html> |