| author | ymh <ymh.work@gmail.com> |
| Fri, 13 Mar 2015 10:56:19 +0100 | |
| changeset 396 | b51c25ef4292 |
| parent 345 | cb5c0007c9f9 |
| child 417 | e98756860daa |
| permissions | -rw-r--r-- |
| 256 | 1 |
<!DOCTYPE html> |
2 |
<html lang="fr"> |
|
3 |
<head> |
|
4 |
<meta charset="utf-8" /> |
|
5 |
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" /> |
|
6 |
<title>RENKAN test in read-only mode : body 100%</title> |
|
7 |
<meta name="description" content="" /> |
|
8 |
<meta name="author" content="Institut de Recherche et d'Innovation" /> |
|
| 345 | 9 |
<script src="../lib/jquery/jquery.js"></script> |
10 |
<script src="../lib/jquery-mousewheel/jquery.mousewheel.js"></script> |
|
11 |
<script src="../lib/underscore/underscore.js"></script> |
|
12 |
<script src="../lib/backbone/backbone.js"></script> |
|
13 |
<script src="../lib/backbone-relational/backbone-relational.js"></script> |
|
14 |
<script src="../lib/paper/paper-full.js"></script> |
|
|
290
8a6eb26ac87f
move client build to Grunt and relocate it into client folder. Adjust server to work with the new build.
ymh <ymh.work@gmail.com>
parents:
284
diff
changeset
|
15 |
<script src="../js/main.js"></script> |
|
8a6eb26ac87f
move client build to Grunt and relocate it into client folder. Adjust server to work with the new build.
ymh <ymh.work@gmail.com>
parents:
284
diff
changeset
|
16 |
<script src="../js/models.js"></script> |
|
8a6eb26ac87f
move client build to Grunt and relocate it into client folder. Adjust server to work with the new build.
ymh <ymh.work@gmail.com>
parents:
284
diff
changeset
|
17 |
<script src="../js/defaults.js"></script> |
|
8a6eb26ac87f
move client build to Grunt and relocate it into client folder. Adjust server to work with the new build.
ymh <ymh.work@gmail.com>
parents:
284
diff
changeset
|
18 |
<script src="../js/i18n.js"></script> |
|
8a6eb26ac87f
move client build to Grunt and relocate it into client folder. Adjust server to work with the new build.
ymh <ymh.work@gmail.com>
parents:
284
diff
changeset
|
19 |
<script src="../js/full-json.js"></script> |
|
8a6eb26ac87f
move client build to Grunt and relocate it into client folder. Adjust server to work with the new build.
ymh <ymh.work@gmail.com>
parents:
284
diff
changeset
|
20 |
<script src="../js/ldtjson-bin.js"></script> |
|
8a6eb26ac87f
move client build to Grunt and relocate it into client folder. Adjust server to work with the new build.
ymh <ymh.work@gmail.com>
parents:
284
diff
changeset
|
21 |
<script src="../js/list-bin.js"></script> |
|
8a6eb26ac87f
move client build to Grunt and relocate it into client folder. Adjust server to work with the new build.
ymh <ymh.work@gmail.com>
parents:
284
diff
changeset
|
22 |
<script src="../js/wikipedia-bin.js"></script> |
| 345 | 23 |
<script data-main="../js/main-renderer.js" src="../lib/requirejs/require.js"></script> |
| 256 | 24 |
<script type="text/javascript"> |
| 284 | 25 |
function startRenkan(){ |
| 281 | 26 |
var _renkan = new Rkns.Renkan({ |
| 256 | 27 |
editor_mode: false, |
28 |
show_bins: false, |
|
29 |
static_url: "../" |
|
30 |
}); |
|
31 |
Rkns.jsonIO(_renkan, { |
|
32 |
url: "../data/example-cinema.json" |
|
33 |
}); |
|
| 284 | 34 |
}; |
| 256 | 35 |
</script> |
36 |
<link rel="stylesheet" href="../css/renkan.css" /> |
|
37 |
<style type="text/css"> |
|
38 |
html { |
|
39 |
heigt: 100%; |
|
40 |
} |
|
41 |
body{ |
|
42 |
margin: 0 auto; |
|
43 |
width: 100%; |
|
44 |
heigt: 100%; |
|
45 |
} |
|
46 |
header { |
|
47 |
font-size: 14px; |
|
48 |
height: 40px; |
|
49 |
padding-top: 10px; |
|
50 |
} |
|
51 |
footer { |
|
52 |
font-size: 14px; |
|
53 |
height: 40px; |
|
54 |
padding-top: 10px; |
|
55 |
position:absolute; |
|
56 |
bottom: 0; |
|
57 |
} |
|
| 345 | 58 |
|
| 256 | 59 |
.wrapper { |
60 |
position:absolute; |
|
61 |
top:40px; |
|
62 |
left: 0; |
|
63 |
right: 0; |
|
64 |
bottom: 40px; |
|
65 |
} |
|
66 |
.rnk-container { |
|
67 |
min-height: 100%; |
|
68 |
position: relative; |
|
69 |
width: 100%; |
|
70 |
} |
|
71 |
</style> |
|
72 |
</head> |
|
73 |
||
74 |
<body> |
|
75 |
<header> |
|
76 |
This is a header |
|
77 |
</header> |
|
78 |
<div class="wrapper"> |
|
79 |
<div class="rnk-container"> |
|
80 |
<div id="renkan"></div> |
|
81 |
</div> |
|
82 |
</div> |
|
83 |
<footer> |
|
84 |
This is a footer |
|
85 |
</footer> |
|
86 |
</body> |
|
87 |
</html> |