24 lines
497 B
Plaintext
24 lines
497 B
Plaintext
<!-- views/index.etlua -->
|
|
<script src="/static/htmx.min.js"></script>
|
|
<% if not isPopulated then %>
|
|
<div id="clickable">
|
|
<button hx-post="/clickme" hx-target="#clickable">Start</button>
|
|
</div>
|
|
<% end %>
|
|
|
|
<article>
|
|
<p style="text-align: center;">Game</p>
|
|
<main style="width: 50%;" class="container" id="map" hx-get="/map/render" hx-trigger="every 1s,load">
|
|
</article>
|
|
|
|
</main>
|
|
|
|
<!--
|
|
<ol>
|
|
<p><% for i, thing in pairs(text) do %>
|
|
<li><%= thing %></li>
|
|
<% end %>
|
|
</p>
|
|
</ol>
|
|
-->
|