{% load ui_classes %}
{% ui_class "ui.brand" "root" size=size class=class as root_class %}
{% ui_class "ui.brand" "logo" size=size as logo_class %}
{% ui_class "ui.brand" "image" as image_class %}
{% ui_class "ui.brand" "text" as text_class %}
{% partialdef brand_content %}
{% if display != "text" %}
{% if slot or logo %}
{% if slot %}
{{ slot }}
{% else %}
{% endif %}
{% endif %}
{% endif %}
{% if display != "logo" and name %}
{{ name }}
{% endif %}
{% endpartialdef %}
{% if href %}
{% partial brand_content %}
{% else %}
{% partial brand_content %}
{% endif %}