32 lines
729 B
HTML
32 lines
729 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta
|
|
name="viewport"
|
|
content="width=device-width, initial-scale=1, shrink-to-fit=no"
|
|
/>
|
|
<meta name="theme-color" content="#000000" />
|
|
|
|
<link rel="manifest" href="%PUBLIC_URL%/manifest.json" />
|
|
<script
|
|
type="text/javascript"
|
|
src="%PUBLIC_URL%/%REACT_APP_CONFIG%"
|
|
></script>
|
|
|
|
<title>OHIF Viewer</title>
|
|
|
|
<!-- WEB FONTS -->
|
|
<link
|
|
href="https://fonts.googleapis.com/css?family=Roboto:100,300,400,500,700|Sanchez&display=swap"
|
|
rel="stylesheet"
|
|
/>
|
|
</head>
|
|
|
|
<body>
|
|
<noscript> You need to enable JavaScript to run this app. </noscript>
|
|
|
|
<div id="root"></div>
|
|
</body>
|
|
</html>
|