summaryrefslogtreecommitdiff
path: root/public/views/index.ejs
diff options
context:
space:
mode:
authorDavid Mehren2021-02-09 20:27:29 +0100
committerDavid Mehren2021-02-09 20:27:39 +0100
commitb468fb623b055ea6f105b40289d708023e59a07e (patch)
tree22edfa602b09c82a63f599ac65879ad95d69e4a6 /public/views/index.ejs
parentfcc4efb8dbbb1ad133ef353e264a5b612661c509 (diff)
Switch to ejs 3 compliant imports
Signed-off-by: David Mehren <git@herrmehren.de>
Diffstat (limited to '')
-rw-r--r--public/views/index.ejs8
1 files changed, 4 insertions, 4 deletions
diff --git a/public/views/index.ejs b/public/views/index.ejs
index 0da58bcd..bd2c4fe6 100644
--- a/public/views/index.ejs
+++ b/public/views/index.ejs
@@ -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>