ravenscott-rocks/views/layout.ejs

21 lines
522 B
Plaintext
Raw Normal View History

2024-10-17 04:39:30 -04:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title><%= title || 'Raven Scott Metal' %></title>
<link rel="stylesheet" href="/css/style.css">
</head>
<body>
<header>
<h1><%= title || 'Raven Scott Metal' %></h1>
</header>
<main>
<%- include('content') %> <!-- This includes the body content -->
</main>
<footer>
<p>&copy; 2024 Raven Scott</p>
</footer>
</body>
</html>