abtmtr-v13/views/pages/index.ejs

33 lines
931 B
Text
Raw Normal View History

2024-08-20 19:30:37 +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-20 19:30:37 +00:00
<%- include("../components/header.ejs") %>
2024-08-21 15:51:57 +00:00
</div>
<main>
2024-08-21 06:05:24 +00:00
<% statuses.forEach((status) => { %>
<div class="boxThing">
<h1><%= status.title %></h1>
<p><%= status.description %></p>
<p><%= status.when.month %> <%= status.when.year %></p>
</div>
<% }) %>
<p class="tagline">abtmtr.link is a domain for all kinds of services, from web search to live-streaming.</p>
2024-08-20 19:30:37 +00:00
<%- include("../components/about-boxes.ejs") %>
</main>
2024-08-21 15:51:57 +00:00
<div class="fakemain">
<%- include("../components/footer.ejs") %>
</div>
2024-08-20 19:30:37 +00:00
<script src="/assets/script.js"></script>
</body>
</html>