Peradventure/views/map.etlua

11 lines
226 B
Plaintext
Raw Normal View History

2024-03-18 15:31:53 -05:00
<p style="text-align: center;">
<% for h=1,10 do %>
2024-03-18 19:06:37 -05:00
<div class="grid">
2024-03-18 15:31:53 -05:00
<% for i=1,10 do %>
2024-03-19 12:50:59 -05:00
<div class="<%= tiles[h][i].material %>"><%= tiles[h][i].char %></div>
2024-03-18 15:31:53 -05:00
<% end %>
<br>
2024-03-18 19:06:37 -05:00
</div>
2024-03-18 15:31:53 -05:00
<% end %>
</p>