first
This commit is contained in:
20
views/layout.ejs
Normal file
20
views/layout.ejs
Normal file
@ -0,0 +1,20 @@
|
||||
<!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>© 2024 Raven Scott</p>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
Reference in New Issue
Block a user