mjml.navbar

mjml.navbar(*args, attributes=None, content=None)

Create an MJML <mj-navbar> tag.

Parameters

*args : TagChild = ()

Children (MJMLTag objects)

attributes : Optional[TagAttrs] = None

Optional dict of tag attributes

content : Optional[str] = None

Optional text content for the tag

Returns

: MJMLTag

MJMLTag object representing <mj-navbar>

Examples

With children:

from emailer_lib.mjml import navbar, text
child = text("Hello World")

result = navbar(child)

With attributes:

result = navbar(attributes={"attr": "value"})

With both:

result = navbar(child, attributes={"background-color": "yellow"})