abtmtr-v13/views/pages/index.ejs
2024-08-31 02:08:51 -05:00

21 lines
No EOL
634 B
Text

<!DOCTYPE html>
<html>
<%- include("../components/page-head.ejs") %>
<body>
<main>
<h1>welcome to abtmtr.link!</h1>
<p>abtmtr.link is a domain for all kinds of services,<br />from web search to live-streaming.</p>
<h2>site links</h2>
<ul>
<% siteMap.forEach((crumb) => { %>
<li>
<h3><a href="/<%= crumb.link %>/"><%= crumb.link %></a></h3>
<p class="nomargin"><%= crumb.description %></p>
</li>
<% }) %>
</ul>
</main>
<%- include("../components/footer.ejs") %>
<%- include("../components/post-main.ejs") %>
</body>
</html>