app.html 889 B

12345678910111213141516171819202122232425262728293031
  1. <html lang="en">
  2. <head>
  3. <meta charset="utf-8" />
  4. <title>Westeroscraft Launcher</title>
  5. <!--<script src="./assets/js/uicore.js"></script>
  6. <script src="./assets/js/actionbinder.js"></script>
  7. <link type="text/css" rel="stylesheet" href="./assets/css/launcher.css">
  8. <style>
  9. body {
  10. background: url('assets/images/backgrounds/<%=0%>.jpg') no-repeat center center fixed;
  11. background-size: cover;
  12. }
  13. #main {
  14. background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0) 100%);
  15. }
  16. </style>-->
  17. <script>
  18. require('babel-register')({
  19. ignore: /^.*\.(css)$/i
  20. })
  21. console.log('here')
  22. require('./start.jsx')
  23. console.log('here')
  24. require('./assets/js/uicore.js')
  25. </script>
  26. </head>
  27. <body>
  28. <div id="app">
  29. </div>
  30. </body>
  31. </html>