mirror of
https://github.com/chanzuckerberg/cellxgene.git
synced 2026-09-16 21:37:59 +08:00
30 lines
959 B
HTML
30 lines
959 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>Cellx</title>
|
|
<style>
|
|
html, body, p, h1, h2, h3, h4, h5, h6, span, button, input {
|
|
font-family: Helvetica Neue,Helvetica,Arial,sans-serif;
|
|
font-size: 16px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<script type="text/javascript">
|
|
window.CELLXGENE = {};
|
|
window.CELLXGENE.API = {
|
|
prefix: "{{ prefix | safe }}",
|
|
version: "v0.1/"
|
|
};
|
|
window.CELLXGENE.datasetTitle = "{{ datasetTitle }}";
|
|
</script>
|
|
<noscript>If you're seeing this message, that means <strong>JavaScript has been disabled on your browser</strong>, please <strong>enable JS</strong> to make this app work.</noscript>
|
|
|
|
<div id="root"></div>
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/4.10.0/d3.js"></script>
|
|
<script src="//d3js.org/d3-scale-chromatic.v0.3.min.js"></script>
|
|
</body>
|
|
</html>
|