2024-03-16 18:29:52 -05:00
|
|
|
<!-- views/index.etlua -->
|
|
|
|
<script src="/path/to/htmx.min.js"></script>
|
|
|
|
|
|
|
|
<h1>Hello world</h1>
|
|
|
|
<p>Welcome to my page</p>
|
|
|
|
<p>The missile guidance system works as follows</p>
|
|
|
|
|
|
|
|
<form>
|
2024-03-16 20:00:13 -05:00
|
|
|
<fieldset>
|
|
|
|
<legend>Give Us Money</legend>
|
|
|
|
<input type="file"></input>
|
|
|
|
<input type="text"></input>
|
|
|
|
</fieldset>
|
|
|
|
<fieldset>
|
|
|
|
<label>Do it</label>
|
|
|
|
<input type="number"></input>
|
|
|
|
</fieldset>
|
2024-03-16 18:29:52 -05:00
|
|
|
</form>
|
2024-03-16 20:00:13 -05:00
|
|
|
<br>
|
|
|
|
|
|
|
|
<button>Click me</button>
|
|
|
|
|
|
|
|
<ol>
|
|
|
|
<p><% for i, thing in pairs(text) do %>
|
|
|
|
<li><%= thing %></li>
|
|
|
|
<% end %>
|
|
|
|
</p>
|
|
|
|
</ol>
|