-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
27 lines (23 loc) Β· 993 Bytes
/
Copy pathindex.html
File metadata and controls
27 lines (23 loc) Β· 993 Bytes
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 lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/png" href="/favicon.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- PWA Meta Tags -->
<meta name="theme-color" content="#1f2937" />
<meta name="description" content="A Progressive Web App for tracking Tactical Barbell workouts and hybrid athlete training" />
<!-- iOS Meta Tags -->
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="default" />
<meta name="apple-mobile-web-app-title" content="Unbroken" />
<link rel="apple-touch-icon" href="/apple-touch-icon.png" />
<!-- Android Meta Tags -->
<meta name="mobile-web-app-capable" content="yes" />
<title>Unbroken - Tactical Barbell Tracker</title>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>