and the footer was a footer type with no id, so now they are both both. Also added some margins at the top and bottom of the page in CSS
18 lines
411 B
Plaintext
18 lines
411 B
Plaintext
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<%- include('../partials/head'); %>
|
|
</head>
|
|
<body>
|
|
<header id="header">
|
|
<%- include("../headers/site_wide") %>
|
|
</header>
|
|
<div id="posts">
|
|
<%- include('../posts/post'); %>
|
|
</div>
|
|
<footer id='footer'>
|
|
<%- include('../partials/footer'); %>
|
|
</footer>
|
|
</body>
|
|
</html>
|