Answers for "ejs header footer"

1

why ejs include partials/header.ejs not working

You have to put the partials in brackets and quotes. So you should write this part

    <body>
    <%- include partials/header.ejs %>
    <%- body %>
    <%- include partials/footer.ejs %>
    </body>
Like this

    <body>
    <%- include ("partials/header") %>
    <%- body %>
    <%- include ("partials/footer") %>
    </body>
Posted by: Guest on May-01-2020
6

how to include in ejs

<%- include('./partials/nav.ejs') %>
Posted by: Guest on May-27-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language