Files
blogger-nodejs/views/pages/post.ejs
deadvey 3b47701c18 Made some divs consistent, the header was a div type with id='header'
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
2025-10-25 11:31:08 +01:00

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>