1
Fork 0
photoview/ui/index.html

20 lines
688 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-05-21 09:55:45 +02:00
<!-- <link rel="manifest" href="/manifest.json" />
<link rel="stylesheet" href="/index.css" /> -->
2021-02-25 13:23:22 +01:00
2020-05-12 12:09:55 +02:00
<!-- Apple touch devices -->
2021-05-21 09:55:45 +02:00
<link rel="apple-touch-icon" href="/src/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-05-21 12:15:00 +02:00
<script type="module" src="/src/main.tsx"></script>
2019-07-07 23:53:07 +02:00
</body>
</html>