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,10 +4,10 @@
<%- include('../partials/head'); %>
</head>
<body>
<div id="header">
<header id="header">
<%- include("../headers/site_wide") %>
<%- include('../headers/timeline'); %>
</div>
</header>
<form method="POST" action="/submit_nothing" style="display:none">
<!-- Form is used to help mitigate spam as it is the first form on the front page -->
<input type="hidden" name="post_index" value="0">
@@ -29,7 +29,7 @@
<textarea placeholder="comment" name="content"></textarea><br/>
<button type="submit">Submit</button>
</form>
<footer>
<footer id='footer'>
<%- include('../partials/footer'); %>
</footer>
</body>