How can I use partials with EJS client side? I am using express and I'd like to share the same templates between server-side and client-side. I've compiled the same templates to client side code but it doesn't recognize the partial function.
ReferenceError: ejs:38
36| <body>
37|
>> 38| <%- partial('header') %>
39| <div class="container">
40| <%- body %>
41| </div> <!-- /container -->
partial is not defined