<!DOCTYPE html>
<html lang="en">
	<head>
		<title><%= title %></title>
	  <meta charset="utf-8">
	  <meta name="viewport" content="width=device-width, initial-scale=1" />
		<link rel="stylesheet" type="text/css" href="/css/main.css">
		<script src="/js/main.js"></script>
	</head>
	<body>
		<header>
			<h1>Header</h1>
		</header>
		<nav>
			Nav Bar
		</nav>
		<div id="content">
			<main>
				<%- include('partials/top') %>
        <%- content %>
        <%- include('partials/bottom') %>
			</main>
		</div>
		<footer>
			Footer
		</footer>
	</body>
</html>