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
This commit is contained in:
2025-10-25 11:31:08 +01:00
parent ddf9fcae13
commit 3b47701c18
7 changed files with 122 additions and 18 deletions

View File

@@ -4,13 +4,13 @@
<%- include('../partials/head'); %>
</head>
<body>
<div id="header">
<header id="header">
<%- include("../headers/site_wide") %>
</div>
</header>
<div id="posts">
<%- include('../posts/post'); %>
</div>
<footer>
<footer id='footer'>
<%- include('../partials/footer'); %>
</footer>
</body>