| author | rougeronj |
| Wed, 03 Jun 2015 17:27:46 +0200 | |
| changeset 471 | e0c7be5dc02c |
| parent 444 | 19f0b7803aed |
| child 647 | eaaa1efce396 |
| 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> |
|
| 433 | 11 |
<script src="../lib/lodash/lodash.js"></script> |
| 345 | 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> |
|
444
19f0b7803aed
add schema version + dataloaders to ensure data migrations + small correction for php server exmple + a readme for the php server example
ymh <ymh.work@gmail.com>
parents:
433
diff
changeset
|
16 |
<script src="../js/dataloader.js"></script> |
| 471 | 17 |
<script src="../js/router.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
|
18 |
<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
|
19 |
<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
|
20 |
<script src="../js/i18n.js"></script> |
| 417 | 21 |
<script src="../dist/js/templates.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
|
22 |
<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
|
23 |
<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
|
24 |
<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
|
25 |
<script src="../js/wikipedia-bin.js"></script> |
| 345 | 26 |
<script data-main="../js/main-renderer.js" src="../lib/requirejs/require.js"></script> |
| 256 | 27 |
<script type="text/javascript"> |
| 284 | 28 |
function startRenkan(){ |
| 281 | 29 |
var _renkan = new Rkns.Renkan({ |
| 256 | 30 |
editor_mode: false, |
31 |
show_bins: false, |
|
32 |
static_url: "../" |
|
33 |
}); |
|
34 |
Rkns.jsonIO(_renkan, { |
|
35 |
url: "../data/example-cinema.json" |
|
36 |
}); |
|
| 284 | 37 |
}; |
| 256 | 38 |
</script> |
39 |
<link rel="stylesheet" href="../css/renkan.css" /> |
|
40 |
<style type="text/css"> |
|
41 |
html { |
|
42 |
heigt: 100%; |
|
43 |
} |
|
44 |
body{ |
|
45 |
margin: 0 auto; |
|
46 |
width: 100%; |
|
47 |
heigt: 100%; |
|
48 |
} |
|
49 |
header { |
|
50 |
font-size: 14px; |
|
51 |
height: 40px; |
|
52 |
padding-top: 10px; |
|
53 |
} |
|
54 |
footer { |
|
55 |
font-size: 14px; |
|
56 |
height: 40px; |
|
57 |
padding-top: 10px; |
|
58 |
position:absolute; |
|
59 |
bottom: 0; |
|
60 |
} |
|
| 345 | 61 |
|
| 256 | 62 |
.wrapper { |
63 |
position:absolute; |
|
64 |
top:40px; |
|
65 |
left: 0; |
|
66 |
right: 0; |
|
67 |
bottom: 40px; |
|
68 |
} |
|
69 |
.rnk-container { |
|
70 |
min-height: 100%; |
|
71 |
position: relative; |
|
72 |
width: 100%; |
|
73 |
} |
|
74 |
</style> |
|
75 |
</head> |
|
76 |
||
77 |
<body> |
|
78 |
<header> |
|
79 |
This is a header |
|
80 |
</header> |
|
81 |
<div class="wrapper"> |
|
82 |
<div class="rnk-container"> |
|
83 |
<div id="renkan"></div> |
|
84 |
</div> |
|
85 |
</div> |
|
86 |
<footer> |
|
87 |
This is a footer |
|
88 |
</footer> |
|
89 |
</body> |
|
90 |
</html> |