can you incldue an ejs partial in html code example
Example 1: how to include in ejs
<%- include('./partials/nav.ejs') %>
Example 2: ejs include dynamic partial
<%- include(page) %>
// OR //
<%- include('partials/'+page) %>
<%- include('./partials/nav.ejs') %>
<%- include(page) %>
// OR //
<%- include('partials/'+page) %>