bliss/views/workshop/index.eta

25 lines
867 B
Text
Raw Normal View History

2024-02-24 11:12:14 -05:00
<html>
<head>
<script src="https://unpkg.com/htmx.org"></script>
<script src="https://unpkg.com/hyperscript.org"></script>
<script src="https://cdn.tailwindcss.com"></script>
</head>
<body>
<button _="on click toggle .hidden on #new-structure">+ new structure</button>
2024-06-02 00:39:30 -04:00
<div id="new-structure" class="hhiddenn">
2024-02-24 11:12:14 -05:00
<form action="/workshop" method="POST">
<label for="name">come up with a name for your structure and enter it here.</label>
<input name="name">
<button type="submit">
erect structure
</button>
</form>
</div>
2024-06-02 00:39:30 -04:00
<% it.structures.map(structure => { %>
2024-02-24 11:12:14 -05:00
<a href="/workshop/<%= structure.id %>">
<%= structure.name %>
</a>
<% }) %>
</body>
</html>