forked from ietf-tools/datatracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlogo.html
More file actions
35 lines (33 loc) · 1.15 KB
/
logo.html
File metadata and controls
35 lines (33 loc) · 1.15 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{% load origin %}
{% load static %}
{% origin %}
<img alt="{{ org|upper }} Logo"
class="d-lm-none{% if classes %} {{ classes }}{% endif %}"
{% if title %}title="{{ title }}"{% endif %}
{% if org == "iab" %}
src="{% static 'ietf/images/iab-logo-white.svg' %}"
{% elif org == "ietf" %}
{% if nor %}
src="{% static 'ietf/images/ietf-logo-nor-white.svg' %}"
{% else %}
src="{% static 'ietf/images/ietf-logo-white.svg' %}"
{% endif %}
{% elif org == "irtf" %}
src="{% static 'ietf/images/irtf-logo-white.svg' %}"
{% endif %}
>
<img alt="{{ org|upper }} Logo"
class="d-dm-none{% if classes %} {{ classes }}{% endif %}"
{% if title %}title="{{ title }}"{% endif %}
{% if org == "iab" %}
src="{% static 'ietf/images/iab-logo.svg' %}"
{% elif org == "ietf" %}
{% if nor %}
src="{% static 'ietf/images/ietf-logo-nor.svg' %}"
{% else %}
src="{% static 'ietf/images/ietf-logo.svg' %}"
{% endif %}
{% elif org == "irtf" %}
src="{% static 'ietf/images/irtf-logo.svg' %}"
{% endif %}
>