48 lines
1.6 KiB
Plaintext
48 lines
1.6 KiB
Plaintext
<!DOCTYPE html>
|
|
<html lang="en" style="overflow: hidden">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<title><%= config.name %> - Riju</title>
|
|
<link
|
|
rel="stylesheet"
|
|
href="https://cdnjs.cloudflare.com/ajax/libs/bulma/0.9.3/css/bulma.min.css"
|
|
integrity="sha512-IgmDkwzs96t4SrChW29No3NXBIBv8baW490zk5aXvhCD8vuZM3yUSkbyTBcXohkySecyzIrUwiF/qV0cuPcL3Q=="
|
|
crossorigin="anonymous"
|
|
referrerpolicy="no-referrer"
|
|
/>
|
|
<link
|
|
rel="stylesheet"
|
|
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css"
|
|
integrity="sha512-iBBXm8fW90+nuLcSKlbmrPcLa0OT92xO1BIsZ+ywDWZCvqsWgccV3gFoRBv0z+8dLJgyAHIhR35VZc2oM/gI1w=="
|
|
crossorigin="anonymous"
|
|
referrerpolicy="no-referrer"
|
|
/>
|
|
<link rel="stylesheet" href="/css/app.css" />
|
|
<script>
|
|
window.rijuConfig = <%- JSON.stringify(config) %>;
|
|
</script>
|
|
<script src="/js/app.js" defer></script>
|
|
<% if (analyticsTag) { %>
|
|
<%- analyticsTag %>
|
|
<% } %>
|
|
</head>
|
|
<body>
|
|
<div class="columns" style="height: 100vh; margin: 0">
|
|
<div class="column" id="terminal" style="background: black; padding: 0">
|
|
</div>
|
|
</div>
|
|
<div class="modal" id="modal">
|
|
<div class="modal-background will-close-modal"></div>
|
|
<div class="modal-card">
|
|
<header class="modal-card-head">
|
|
<p class="modal-card-title" id="modal-title"></p>
|
|
<button class="delete will-close-modal" aria-label="close"></button>
|
|
</header>
|
|
<section class="modal-card-body">
|
|
<pre id="modal-data"></pre>
|
|
</section>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|