website/templates/layouts/default.html.ep

34 lines
895 B
Plaintext

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title><%= title %></title>
<link rel="icon" type="image/x-icon" href="favicon.ico">
<link rel="stylesheet" href="css/main.css">
<meta property="og:title" content="<%= title %>">
<meta property="og:type" content="webpage">
<meta property="og:url" content="https://unix.dog/">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<header>
<div id="header-content">
<img src="favicon.ico" width="32" height="32" alt="UNIX.dog"/>
<h1>UNIX.dog</h1>
</div>
</header>
<main>
<%= content %>
</main>
<footer>
<span class="copyleft">&copy;</span> Copyleft UNIX.dog, 2022. All pages licensed under CC BY-NC-SA 4.0.
<br>
Please follow <a href="/rules">all rules</a> while using these services.
</footer>
</body>
</html>