1
0
mirror of https://github.com/checktheroads/hyperglass synced 2024-05-11 05:55:08 +00:00
2020-01-03 01:25:41 -07:00

26 lines
1.4 KiB
HTML

{% macro title(branding, primary_asn, size_title="h1", size_subtitle="h4", direction="none") -%}
{% if branding.text.title_mode == 'text_only' %}
<div class="col p-0">
<p class="{{ size_title }}">{{ branding.text.title }}</p>
<p class="{{ size_subtitle }}">{{ branding.text.subtitle.format(primary_asn=primary_asn) }}</p>
</div>
{% elif branding.text.title_mode == 'all' %}
<img src="{{ branding.logo.logo_path }}" style="width: {{ branding.logo.width }}px; {% if branding.logo.height %} height: {{ branding.logo.height }}px;{% endif %}">
<p class="{{ size_title }}">{{ branding.text.title }}<p>
<p class="{{ size_subtitle }}">{{ branding.text.subtitle.format(primary_asn=primary_asn) }}</p>
{% elif branding.text.title_mode == 'logo_title' %}
<div class="float-{{ direction }} mw-sm-100 mw-md-75 mw-lg-50 mw-xl-50">
<img class="img-fluid hg-logo" src="{{ branding.logo.logo_path }}" style="width: {{ branding.logo.width }}px; {% if branding.logo.height %} height: {{ branding.logo.height }}px;{% endif %}">
</div>
<p clas="{{ size_title }}">{{ branding.text.title }}</p>
{% elif branding.text.title_mode == 'logo_only' %}
<div class="float-{{ direction }} mw-sm-100 mw-md-75 mw-lg-50 mw-xl-50">
<img class="img-fluid hg-logo" src="{{ branding.logo.logo_path }}" style="width: {{ branding.logo.width }}px; {% if branding.logo.height %} height: {{ branding.logo.height }}px;{% endif %}">
</div>
{% endif %}
{%- endmacro %}