| 12345678910111213141516171819202122232425262728293031 |
- <html lang="en">
- <head>
- <meta charset="utf-8" />
- <title>Westeroscraft Launcher</title>
- <!--<script src="./assets/js/uicore.js"></script>
- <script src="./assets/js/actionbinder.js"></script>
- <link type="text/css" rel="stylesheet" href="./assets/css/launcher.css">
- <style>
- body {
- background: url('assets/images/backgrounds/<%=0%>.jpg') no-repeat center center fixed;
- background-size: cover;
- }
- #main {
- background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0) 100%);
- }
- </style>-->
- <script>
- require('babel-register')({
- ignore: /^.*\.(css)$/i
- })
- console.log('here')
- require('./start.jsx')
- console.log('here')
- require('./assets/js/uicore.js')
- </script>
- </head>
- <body>
- <div id="app">
- </div>
- </body>
- </html>
|