{% extends "async_notification/base/_layout.html" %}{% load i18n %} {% comment %} Product announcement layout. Accent-colored hero with the brand mark and a tagline/eyebrow, generous body spacing, and a call-to-action strip below the content. Best for launches, feature announcements and product marketing. Optional context: cta_url, cta_label to render the footer call-to-action. {% endcomment %} {% block preheader %}{{ brand.tagline|default:_("What's new") }}{% endblock %} {% block header %} {% if brand.logo_url %} {{ brand.name|default:'' }} {% elif brand.name %}
{{ brand.name }}
{% endif %}
{{ brand.tagline|default:_("Product update") }}
{% endblock %} {% block after_content %} {% if cta_url %}
{% include "async_notification/base/utils/button.html" with url=cta_url label=cta_label|default:_("Learn more") color=brand.color %}
{% endif %} {% endblock %} {% block footer %} {% if brand.site_url %}

{{ brand.site_url }}

{% endif %}

{% if brand.name %}© {% now "Y" %} {{ brand.name }}. {% endif %}{% if brand.address %}{{ brand.address }}{% endif %}

{% endblock %}