<% var title = 'Notifications'; %> <%- include('../partials/header') %>

🔔 Notifications

<% if (notifications.length === 0) { %>

✅ All clear! No pending actions.

<% } else { notifications.forEach(n => { %>
<%= n.icon %>
<%= n.title %>
<%= n.subtitle || '' %>
<% }) } %>
<%- include('../partials/footer') %>