mirror of
https://github.com/danbee/chess
synced 2025-03-04 08:39:06 +00:00
17 lines
313 B
HTML
17 lines
313 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Chess</title>
|
|
<link rel="stylesheet" href="app.css">
|
|
</head>
|
|
<body>
|
|
<div id="app">
|
|
</div>
|
|
|
|
<script src="vendor.js"></script>
|
|
<script src="app.js"></script>
|
|
<script>require('application');</script>
|
|
</body>
|
|
</html>
|