Switch to ejs 3 compliant imports

Signed-off-by: David Mehren <git@herrmehren.de>
This commit is contained in:
David Mehren
2021-02-09 20:27:29 +01:00
parent fcc4efb8db
commit b468fb623b
11 changed files with 45 additions and 45 deletions

View File

@@ -2,13 +2,13 @@
<html lang="en">
<head>
<%- include index/head %>
<%- include('index/head') %>
</head>
<body>
<%- include index/header %>
<%- include index/body %>
<%- include index/footer %>
<%- include('index/header') %>
<%- include('index/body') %>
<%- include('index/footer') %>
</body>
</html>