added a main id so central section can be styled

This commit is contained in:
2026-06-01 12:46:39 +01:00
parent 9b10188066
commit 1a0b16feb2
11 changed files with 244 additions and 202 deletions
+16 -14
View File
@@ -1,17 +1,19 @@
<!DOCTYPE html>
<html lang="en">
<head>
<%- include('../partials/head'); %>
</head>
<body>
<header id="site-header">
<%- include("../headers/site_wide") %>
</header>
<div id="posts">
<%- include('../posts/post'); %>
</div>
<footer id='footer'>
<%- include('../partials/footer'); %>
</footer>
</body>
<head>
<%- include('../partials/head'); %>
</head>
<body>
<div id="main">
<header id="site-header">
<%- include("../headers/site_wide") %>
</header>
<div id="posts">
<%- include('../posts/post'); %>
</div>
<footer id='footer'>
<%- include('../partials/footer'); %>
</footer>
</div>
</body>
</html>