SkirdaElectronLauncher/app/app.html

31 lines
889 B
HTML
Raw Permalink Normal View History

<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>