homehub/dev/templates/index.html

26 lines
854 B
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0"/>
<meta name="apple-mobile-web-app-capable" content="yes" />
<title>BTHLabs HomeHub</title>
<link href="<%= publicPath %>homehub-<%= build %>.css" rel="stylesheet">
<link href="<%= publicPath %>homehub-components-<%= build %>.css" rel="stylesheet">
<link href="<%= publicPath %>icon.png" rel="apple-touch-icon">
<link href="<%= publicPath %>icon.png" rel="shortcut icon">
</head>
<body>
<div id="root"></div>
<script type="text/javascript">
window.HOMEHUB_CONFIG = {
version: '<%= version %>',
build: '<%= build %>'
};
</script>
</body>
</html>