abtmtr-v13/views/pages/links/index.ejs
2024-08-21 01:05:24 -05:00

26 lines
No EOL
677 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>
<main>
<%- include("../../components/header.ejs") %>
<p class="tagline">Where I am on the Internet.</p>
<div class="Aboutbox">
<% links.forEach((link) => { %>
<%- include("../../components/link-boxes.ejs", link) %>
<% }) %>
</div>
<%- include("../../components/footer.ejs") %>
</main>
<script src="/assets/script.js"></script>
</body>
</html>