{% set notification_id = id or 'notification-' + (timestamp | string) %} {% set notification_type = type or 'info' %} {% set notification_message = message or 'Notification' %} {% set notification_title = title or (notification_type | capitalize) %} {% set auto_hide = auto_hide if auto_hide is defined else true %} {% set duration = duration or 5000 %} {% set icon_map = { 'success': 'fas fa-check-circle', 'error': 'fas fa-exclamation-circle', 'warning': 'fas fa-exclamation-triangle', 'info': 'fas fa-info-circle' } %}