Answers for "why ejs include partials/header.ejs not working"

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

Code answers related to "Javascript"

Browse Popular Code Answers by Language