Files
Joris Bertomeu 5c6da90f98 first
2025-08-19 16:34:19 +02:00

21 lines
832 B
Plaintext

<!-- Header partial - inclus dans certaines vues -->
<header class="bg-white shadow-sm mb-4">
<div class="d-flex justify-content-between align-items-center p-3">
<h1 class="h4 mb-0"><%= typeof pageTitle !== 'undefined' ? pageTitle : 'Mail Notifier' %></h1>
<% if (typeof showActions !== 'undefined' && showActions) { %>
<div class="btn-group">
<% if (typeof actionButtons !== 'undefined') { %>
<% actionButtons.forEach(function(button) { %>
<a href="<%= button.href %>" class="btn <%= button.class || 'btn-outline-primary' %>">
<% if (button.icon) { %>
<i class="fas fa-<%= button.icon %> me-1"></i>
<% } %>
<%= button.text %>
</a>
<% }); %>
<% } %>
</div>
<% } %>
</div>
</header>