blob: 5f17809ffab008b5c99a18ec18bb87744a142ac5 (
plain)
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
36
|
{% load static %}
<div class="header-banner">
{% if request.LANGUAGE_CODE == 'ja' %}
<img
draggable="false"
src="{% static 'images/core/images/[email protected]' %}"
alt="Shifoo Title Banner"
class="title-banner"
width="1200"
height="400"
loading="lazy"
/>
{% else %}
<img
draggable="false"
src="{% static 'images/core/images/[email protected]' %}"
alt="Shifoo Title Banner"
class="title-banner"
width="1200"
height="400"
loading="lazy"
/>
{% endif %}
<img
draggable="false"
src="{% static 'images/core/images/[email protected]' %}"
alt="Picture of Neko Boy Sitting on the Divider Line"
width="188"
height="333"
style="position: absolute;
bottom: -41px;
z-index: 3;
right: {% if request.LANGUAGE_CODE == 'ja' %} -16px {% else %} 0px {% endif %}"
loading="lazy"
/>
</div>
|