bump ejs and fix resulting issues

This commit is contained in:
len0rd 2022-06-20 18:40:28 -04:00
parent 482c449094
commit 01b5ae06ac
5 changed files with 1087 additions and 17 deletions

View file

@ -2,12 +2,12 @@
<html lang="en">
<head>
<% include ../partials/include %>
<%- include('../partials/include') %>
</head>
<body>
<header>
<% include ../partials/nav %>
<%- include('../partials/nav') %>
</header>
<div class="container-cenMain">
@ -18,7 +18,8 @@
</div>
</div>
<% include ../partials/footer %>
<% include ../partials/post_html_include %>
<%- include('../partials/footer') %>
<%- include('../partials/post_html_include') %>
</body>
</html>

View file

@ -2,12 +2,12 @@
<html lang="en">
<head>
<% include ../partials/include %>
<%- include('../partials/include') %>
</head>
<body>
<header>
<% include ../partials/nav %>
<%- include('../partials/nav') %>
</header>
<main role="main">
@ -127,8 +127,8 @@
</main>
<% include ../partials/footer %>
<% include ../partials/post_html_include %>
<%- include('../partials/footer') %>
<%- include('../partials/post_html_include') %>
</body>
</html>