This repository has been archived on 2025-01-02. You can view files and clone it, but cannot push or open issues or pull requests.
Files
mylinks/modules/text/web/index.ejs

33 lines
794 B
Plaintext

<!DOCTYPE html>
<html lang="en">
<head>
<title><%= meta.title %></title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css" rel="stylesheet">
<style>
body {
background-color: #f1f1f1;
font-family: 'Courier New', serif;
min-height: 100vh;
display: flex;
align-items: center;
}
a {
text-decoration: none;
}
span {
color: #0d6efd;
}
</style>
</head>
<body>
<div class="container">
<div class="text-center">
<h1><%= meta.title %></h1>
<p><%= meta.content %></p>
</div>
</div>
</body>
</html>