README / index.html
Reubencf's picture
Embed dataset-explorer via iframe (JS runs in its own context)
6cee598 verified
raw
history blame
1.31 kB
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Reuben Data Lab</title>
<style>
html, body {
margin: 0;
padding: 0;
background: #000;
color: #fff;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
overflow: hidden;
}
.frame-wrap {
width: 100%;
height: 100vh;
min-height: 2800px;
background: #000;
}
iframe {
width: 100%;
height: 100%;
border: 0;
display: block;
background: #000;
}
.fallback {
padding: 32px 24px;
text-align: center;
color: #8a8a94;
font-size: 0.9rem;
}
.fallback a { color: #fff; border-bottom: 1px dashed #8a8a94; text-decoration: none; }
</style>
</head>
<body>
<div class="frame-wrap">
<iframe
src="https://reubencf-dataset-explorer.static.hf.space/"
title="ReubenDataLab Dataset Explorer"
allow="fullscreen"
loading="lazy"
referrerpolicy="no-referrer-when-downgrade"></iframe>
</div>
<noscript>
<div class="fallback">
Interactive dataset explorer at
<a href="https://huggingface.co/spaces/Reubencf/dataset-explorer" target="_blank">
huggingface.co/spaces/Reubencf/dataset-explorer
</a>.
</div>
</noscript>
</body>
</html>