28 lines
No EOL
749 B
Text
28 lines
No EOL
749 B
Text
<!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>
|
|
<div class="fakemain">
|
|
<%- include("../../components/header.ejs") %>
|
|
</div>
|
|
<main>
|
|
<p class="tagline">Stuff I host here on abtmtr.link.</p>
|
|
<div class="Aboutbox">
|
|
<% services.forEach((service) => { %>
|
|
<%- include("../../components/service-boxes.ejs", {...service, arr: visibility}) %>
|
|
<% }) %>
|
|
</div>
|
|
</main>
|
|
<%- include("../../components/footer.ejs") %>
|
|
<script src="/assets/script.js"></script>
|
|
</body>
|
|
|
|
</html> |