Site wide header (currently only used for a link to / but will add

index's for stuff later)
This commit is contained in:
2025-08-01 23:27:28 +01:00
parent cdfc5f2c30
commit 5f2aba0c2b
6 changed files with 13 additions and 1 deletions

View File

@@ -0,0 +1 @@
<a href="/">Home Page</a><br/>

View File

@@ -4,6 +4,9 @@
<%- include('../partials/head'); %>
</head>
<body>
<div id="header">
<%- include("../headers/site_wide") %>
</div>
<div id="comment">
<%- include("../partials/comment"); %>
</div>

View File

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

View File

@@ -5,6 +5,7 @@
</head>
<body>
<div id="header">
<%- include("../headers/site_wide") %>
<%- include('../headers/timeline'); %>
</div>
<div id="posts">

View File

@@ -5,6 +5,7 @@
</head>
<body>
<div id="header">
<%- include("../headers/site_wide") %>
<%- include('../headers/user'); %>
</div>
<div id="posts">

View File

@@ -1,9 +1,12 @@
<!DOCTYPE html>
<html lang="<%=config.language%>
<html lang="<%= config.language %>">
<head>
<%- include('head') %>
</head>
<body>
<div id="header">
<%- include("../headers/site_wide") %>
</div>
<%- message %>
</body>
</html>