AppFooter
AppTwo-row application footer with logo, navigation links, system status badge, version, copyright, and social slot.
<%- include('modules/app/AppFooter', {
logoContent: 'Acme',
status: 'degraded',
copyright: '© 2026 Acme Corp.'
}) %>
<%
var _status = locals.status || null;
var statusMap = {
operational: { cls: 'bg-success-subtle text-success-fg', dot: 'bg-success', label: 'Operational' },
degraded: { cls: 'bg-warning-subtle text-warning-fg', dot: 'bg-warning', label: 'Degraded' },
outage: { cls: 'bg-error-subtle text-error-fg', dot: 'bg-error', label: 'Outage' }
};
var _sc = _status ? statusMap[_status] : null;
%>