2015-08-20 18:41:51 +02:00
|
|
|
<html>
|
|
|
|
<head>
|
2015-08-26 14:08:12 +02:00
|
|
|
<title>Lanceur - Pitaya</title>
|
2015-08-20 18:41:51 +02:00
|
|
|
<link rel="stylesheet" href="css/style.css" />
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
|
2015-08-21 14:47:06 +02:00
|
|
|
<!-- Application root element -->
|
2015-08-26 14:08:12 +02:00
|
|
|
<div id="pitaya"></div>
|
2015-08-27 22:52:30 +02:00
|
|
|
|
2015-08-21 14:47:06 +02:00
|
|
|
<!-- Scripts -->
|
2015-08-20 18:41:51 +02:00
|
|
|
<script type="text/javascript">
|
2015-08-27 18:24:29 +02:00
|
|
|
// React context detection workaround
|
|
|
|
global.document = global.window.document;
|
|
|
|
global.navigator = global.window.navigator;
|
|
|
|
|
|
|
|
// Auto transform JSX
|
|
|
|
require('node-jsx').install();
|
|
|
|
|
|
|
|
// Launch application
|
|
|
|
require('./js/app.jsx');
|
|
|
|
|
2015-08-20 18:41:51 +02:00
|
|
|
</script>
|
|
|
|
|
|
|
|
</body>
|
|
|
|
</html>
|