29 lines
598 B
Plaintext
29 lines
598 B
Plaintext
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
|
||
|
<meta charset="UTF-8">
|
||
|
<meta name="viewport" content="width=device-width,initial-scale=1">
|
||
|
<meta name="description" content="{{ page.description }}">
|
||
|
|
||
|
<title>Random Bird of Prey</title>
|
||
|
|
||
|
<link rel="preload" as="style" href="/css/styles.css">
|
||
|
<link rel="stylesheet" href="/css/styles.css">
|
||
|
|
||
|
<body>
|
||
|
<div class="menu">
|
||
|
<a href="/">New Image</a>
|
||
|
<a href="/about">About</a>
|
||
|
</div>
|
||
|
|
||
|
<div class="main">
|
||
|
<%= yield %>
|
||
|
</div>
|
||
|
|
||
|
<footer>
|
||
|
<p>2024 - 2024 hexaitos.com</p>
|
||
|
<p>Made with Sinatra</p>
|
||
|
</footer>
|
||
|
</body>
|
||
|
</html>
|