abtmtr-v13/views/pages/index.ejs

21 lines
634 B
Text
Raw Permalink Normal View History

2024-08-20 19:30:37 +00:00
<!DOCTYPE html>
<html>
2024-08-30 03:45:15 +00:00
<%- include("../components/page-head.ejs") %>
2024-08-30 03:40:00 +00:00
<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>
2024-08-31 07:08:51 +00:00
<% siteMap.forEach((crumb) => { %>
<li>
<h3><a href="/<%= crumb.link %>/"><%= crumb.link %></a></h3>
<p class="nomargin"><%= crumb.description %></p>
</li>
<% }) %>
2024-08-30 03:40:00 +00:00
</ul>
</main>
<%- include("../components/footer.ejs") %>
2024-08-31 07:08:51 +00:00
<%- include("../components/post-main.ejs") %>
2024-08-30 03:40:00 +00:00
</body>
2024-08-20 19:30:37 +00:00
</html>