2026-09-08 21:46:24 -04:00
|
|
|
<%#
|
|
|
|
|
Page header partial.
|
|
|
|
|
Locals: title (string), subtitle (optional string), actions (optional raw HTML).
|
2026-09-08 21:57:33 -04:00
|
|
|
Usage from a page view: include('../partials/page-header', { title, subtitle, actions })
|
2026-09-08 21:46:24 -04:00
|
|
|
%>
|
|
|
|
|
<div class="lt-page-header">
|
|
|
|
|
<div>
|
|
|
|
|
<h1 class="lt-page-title"><%= title %></h1>
|
|
|
|
|
<% if (typeof subtitle !== 'undefined' && subtitle) { %>
|
|
|
|
|
<p class="lt-page-subtitle"><%= subtitle %></p>
|
|
|
|
|
<% } %>
|
|
|
|
|
</div>
|
|
|
|
|
<% if (typeof actions !== 'undefined' && actions) { %>
|
|
|
|
|
<div class="lt-page-actions"><%- actions %></div>
|
|
|
|
|
<% } %>
|
|
|
|
|
</div>
|