32 lines
No EOL
1.1 KiB
Text
32 lines
No EOL
1.1 KiB
Text
<!DOCTYPE html>
|
|
<html>
|
|
<%- include("../components/page-head.ejs") %>
|
|
<body>
|
|
<main>
|
|
<h1>servers</h1>
|
|
<p>about the services on abtmtr.link and the machines that serve them.</p>
|
|
<h2>services</h2>
|
|
<p>stuff that's hosted on abtmtr.link.</p>
|
|
<ul>
|
|
<% services.forEach((service) => { %>
|
|
<li>
|
|
<h3><a href="https://<%= service.domain %>/" target="_blank"><%= service.domain %> / <%= service.when.month %> <%= service.when.year %></a></h3>
|
|
<p class="nomargin">Runs <%= service.software %> <%= visibility[service.visibility] %></p>
|
|
</li>
|
|
<% }) %>
|
|
</ul>
|
|
<h2>machines</h2>
|
|
<p>stuff that hosts on abtmtr.link.</p>
|
|
<ul>
|
|
<% computers.forEach((puter) => { %>
|
|
<li>
|
|
<h3><%= puter.name %> / <%= puter.whenGot.month %> <%= puter.whenGot.year %></h3>
|
|
<p class="nomargin"><%= puter.model %> / <%= puter.description %></p>
|
|
<p><%= puter.subtitle %></p>
|
|
</li>
|
|
<% }) %>
|
|
</ul>
|
|
</main>
|
|
<%- include("../components/footer.ejs") %>
|
|
</body>
|
|
</html> |