mirror of
https://github.com/status-im/pluto.git
synced 2025-02-24 16:38:16 +00:00
32 lines
738 B
HTML
32 lines
738 B
HTML
<html>
|
|
<head>
|
|
<style>
|
|
main {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
height: 100%
|
|
}
|
|
|
|
#selection {
|
|
padding: 10px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<main>
|
|
<div id="selection">
|
|
Load demo extension from IPFS <button onclick="pluto.demo.load_and_render('ipfs:QmSKP6f2uUsFq4mk1Afe4ZktxwQifrLb4xRQYNE1LxidKz')">LOAD</button>
|
|
</div>
|
|
<div id="extension">
|
|
<iframe id="frame" srcdoc="<body><main></main></body>"></iframe>
|
|
<div id="errors"></div>
|
|
</div>
|
|
<video id="preview"></video>
|
|
</main>
|
|
</body>
|
|
</html>
|
|
|
|
<script src="assets/pluto.js"></script>
|