1
Fork 0
photoview/ui/src/index.html

20 lines
679 B
HTML
Raw Normal View History

2019-07-07 23:53:07 +02:00
<!DOCTYPE html>
<html lang="en">
<head>
2021-02-25 13:53:00 +01:00
<meta charset="utf-8" />
2019-07-07 23:53:07 +02:00
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
2021-02-25 13:37:45 +01:00
<link rel="manifest" href="/manifest.json" />
2021-02-25 13:23:22 +01:00
<link rel="stylesheet" href="/src/index.css" />
2020-05-12 12:09:55 +02:00
<!-- Apple touch devices -->
2021-02-25 13:37:45 +01:00
<link rel="apple-touch-icon" href="/assets/apple-touch-icon.png" />
2020-05-12 12:09:55 +02:00
<meta name="apple-mobile-web-app-title" content="Photoview" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="white" />
2019-07-07 23:53:07 +02:00
</head>
<body>
<div id="root"></div>
2021-02-25 13:23:22 +01:00
<script type="module" src="/src/index.js"></script>
2019-07-07 23:53:07 +02:00
</body>
</html>