how to include ejs partials code example
Example 1: include partials ejs
<%- include('partials/header.ejs') %>
Example 2: ejs include dynamic partial
<%- include(page) %>
// OR //
<%- include('partials/'+page) %>
<%- include('partials/header.ejs') %>
<%- include(page) %>
// OR //
<%- include('partials/'+page) %>