UNPKG

auspice

Version:

Web app for visualizing pathogen evolution

30 lines (25 loc) 1.21 kB
<!doctype html> <html> <head> <title>auspice</title> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="shortcut icon" href="/favicon.png" type="image/png"> <link rel="icon" href="/favicon.png" type="image/png"> </head> <body class="viewport"> <div id='root'> </div> <!-- asyncronously load the (entry) react bundle --> <script async src="/dist/auspice.bundle.js"></script> <!-- by placing this in the body, we mimic async ability This is important as sometimes unpkg takes 10s to return and, if in the header this blocks the page load. https://codepen.io/tigt/post/async-css-without-javascript https://stackoverflow.com/questions/9271276/is-the-recommendation-to-include-css-before-javascript-invalid --> <link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=Lato:100,200,300,400,500,700"> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css"> <link rel="stylesheet" href="https://unpkg.com/leaflet@1.0.1/dist/leaflet.css" /> </body> </html>