-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.ejs
37 lines (34 loc) · 895 Bytes
/
index.ejs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<!DOCTYPE html>
<html>
<head>
<title>React Universal UI Boilerplate</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no">
<meta name="format-detection" content="telephone=no">
<meta name="msapplication-tap-highlight" content="no">
<style>
:focus { outline: none; }
body {
font-family: "Avenir Next",Nunito,"Helvetica Neue",Helvetica,sans-serif;
font-size: 14px;
color: #888888;
font-weight: 400;
overflow: hidden;
}
#root {
position: absolute;
top: 0; right: 0; bottom: 0; left: 0;
display: flex;
}
.touchable {
cursor: pointer;
user-select: none;
}
</style>
</head>
<body>
<div id="root"></div>
<%if (htmlWebpackPlugin.options.useVendorChunks) { %>
<script src="<%=htmlWebpackPlugin.options.publicPath%>vendor.cache.js"></script>
<% } %>
</body>
</html>