forked from MOIMOB/drinkable
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.ejs
27 lines (25 loc) · 769 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
<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<title>Drinkable</title>
<meta name="viewport" content="initial-scale=1, width=device-width, user-scalable=no" />
<base href="<%- htmlWebpackPlugin.options.metadata.baseUrl %>" />
<link rel="icon" href="static/favicon.ico" />
<style>
:root {
--bottom-safe-area: 0em;
--top-safe-area: 0em;
}
</style>
<% if (htmlWebpackPlugin.options.metadata.store === 'appstore') { %>
<style>
:root {
--bottom-safe-area: 1em;
--top-safe-area: 3em;
}
</style>
<% } %>
</head>
<body aurelia-app="main"></body>
</html>