abtmtr-v13/views/pages/characters.ejs
2024-08-31 15:11:34 -05:00

29 lines
No EOL
1.1 KiB
Text

<!DOCTYPE html>
<html>
<%- include("../components/page-head.ejs") %>
<body>
<main>
<h1>characters</h1>
<p>about abtmtr.link's mascots and other such characters</p>
<h2>entity index</h2>
<% characters.forEach((entity) => { %>
<section class="entity_box">
<p style="float: left; margin-inline: 0 2ch;" class="nomargin">
<img src="<%= entity.img %>" height="72" width="72">
</p>
<h3><%= entity.name.toLowerCase() %> / <%= entity.pronouns.toLowerCase() %></h3>
<p class="nomargin"><%= entity.age %> / <%= entity.species %></p>
<p class="nomargin"><%= entity.sexuality %> / <%= entity.gender %></p>
<p class="clearfix nomargin" style="opacity: 0.5;"><%= entity.blurb %></p>
<br />
<% entity.rows.forEach(([k, v]) => { %>
<h4><%= k %></h4>
<p class="nomargin"><%= v %></p>
<% }) %>
</section>
<% }) %>
</main>
<%- include("../components/footer.ejs") %>
<%- include("../components/post-main.ejs") %>
</body>
</html>