abtmtr-v13/views/pages/computers/index.ejs

28 lines
738 B
Text
Raw Normal View History

2024-08-21 06:05:24 +00:00
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>abtmtr.link</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="/assets/style.css" />
</head>
<body>
2024-08-21 15:51:57 +00:00
<div class="fakemain">
2024-08-21 06:05:24 +00:00
<%- include("../../components/header.ejs") %>
2024-08-21 15:51:57 +00:00
</div>
<main>
2024-08-21 06:05:24 +00:00
<p class="tagline">Computers I own, use, and host stuff on.</p>
<div class="Aboutbox">
<% computers.forEach((computer) => { %>
<%- include("../../components/computer-boxes.ejs", computer) %>
<% }) %>
</div>
</main>
2024-08-28 06:29:42 +00:00
<%- include("../../components/footer.ejs") %>
2024-08-21 06:05:24 +00:00
<script src="/assets/script.js"></script>
</body>
</html>