{# ======================================================================= BASE EMAIL TEMPLATE — Shared chrome for all emails ======================================================================= Provides: head (meta, fonts, responsive styles), card wrapper, centered logo with divider, footer. Blocks available to child templates: block title — tag content block extra_styles — additional <style> rules block content — main card body block card_footer — inside card, after content (sign-offs etc.) ======================================================================= #} {%- set _brand_name = branding.name | default("Nudgebee", true) -%} {%- set _primary_color = branding.primary_color | default("#3470e9", true) -%} {%- set _support_email = branding.support_email | default("", true) -%} {%- set _brand_logo_url = images.logo_url | default("/branding/default/logo.png", true) -%} {%- set _copyright = texts.copyright | default("Copyright © 2022-2025", true) -%} {%- set _address = texts.address | default("Pune", true) -%} {%- set _base_url = links.base_url | default("#", true) -%} {%- set _branding_url = links.branding_url | default("", true) -%} <html lang="en" xmlns="http://www.w3.org/1999/xhtml"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <meta name="x-apple-disable-message-reformatting" /> <title>{% block title %}{{ _brand_name }}{% endblock %}