-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.ejs
More file actions
33 lines (33 loc) · 1.16 KB
/
index.ejs
File metadata and controls
33 lines (33 loc) · 1.16 KB
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
<!DOCTYPE html>
<html lang="de">
<head>
<base href="<%= env.BASE_URL %>/">
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover" />
<title><%= title %></title>
<meta name="description" content="Track your headaches" />
<link
rel="apple-touch-icon"
sizes="180x180"
href="<%= env.ENVIRONMENT === 'production' ? 'apple-touch-icon.png' : 'apple-touch-icon-dev.png' %>"
/>
<link rel="icon" type="image/png" sizes="32x32" href="favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="favicon-16x16.png" />
<meta name="theme-color" content="#0da6f2" />
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
<meta
name="apple-mobile-web-app-title"
content="<%= title %>"
>
<link rel="manifest" href="manifest.webmanifest">
<script>
<%- script.find(s => s.facadeModuleId.endsWith('main.js')).code %>
</script>
<style>
<%- styles.map(s => s.source).join('\n') %>
</style>
</head>
<body>
</body>
</html>