jillo-bot/static/create-recipe/index.html

58 lines
2.0 KiB
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>jillo</title>
<meta name="theme-color" content="light dark">
<link href="/style.css" rel="stylesheet">
<link rel="shortcut icon" href="/favicon.ico">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Balsamiq+Sans&display=swap" rel="stylesheet">
<script src="/create-recipe/script.js"></script>
</head>
<body>
<div id="content">
<div class="header">
<div class="bg"></div>
<div class="left">
<a href="/">jillo</a>
</div>
<div class="links">
<a href="https://discord.com/oauth2/authorize?client_id=898850107892596776&scope=bot" target="_blank" rel="noopener">invite</a>
&middot;
<a href="https://git.oat.zone/dark-firepit/jillo-bot" target="_blank" rel="noopener">repo</a>
<img src="/assets/jillo_small.png">
</div>
</div>
<h1>Recipe Creator</h1>
<div class="items">
loading available items...
</div>
<p class="note">Drag items from above into the below lists:</p>
<h2>Inputs <span class="subtitle">Ingredients necessary to create the outputs</span></h2>
<div class="item-list" data-type="inputs">
</div>
<h2>Requirements <span class="subtitle">Unlike inputs, these are not consumed, but are necessary</span></h2>
<div class="item-list" data-type="requirements">
</div>
<h2>Outputs <span class="subtitle">The result of the recipe</span></h2>
<div class="item-list" data-type="outputs">
</div>
<p class="note">Drag an item out of the list in order to remove it</p>
<h1>Recipe string</h1>
<pre id="recipe-string"></pre>
Copy-paste this into Jillo to create your recipe
</div>
</body>
</html>