<%# Page header partial. Locals: title (string), subtitle (optional string), actions (optional raw HTML). Usage from a page view: include('../partials/page-header', { title, subtitle, actions }) %>

<%= title %>

<% if (typeof subtitle !== 'undefined' && subtitle) { %>

<%= subtitle %>

<% } %>
<% if (typeof actions !== 'undefined' && actions) { %>
<%- actions %>
<% } %>