summaryrefslogtreecommitdiff
path: root/sysret.org/themes/tabi-lean/templates/partials/home_banner.html
blob: 353757b492a236d01283b62c62c03be6360ab1b2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{%- set header = section.extra.header-%}
<div id="banner-container-home">
    <div id="home-banner-text">
        <h1 id="home-banner-header">{{ header.title }}</h1>
        <section id="banner-home-subtitle">
            {{ section.content | safe }}
        </section>
    </div>
    {%- if header.img -%}
        {%- if header.img is containing("$BASE_URL") -%}
            {# Conversion no longer supported in favour of proper path. #}
            {{ throw(message="ERROR: The image path for the header should not contain '$BASE_URL'. Please remove it and use the proper image path.") }}
        {%- else -%}
            {%- set image_path = get_url(path=header.img, trailing_slash=false) | safe -%}
        {%- endif -%}
        <div id="image-container-home">
            <img alt="{{ header.img_alt | default(value="the owner") }}" id="banner-home-img" src="{{ image_path }}" />
        </div>
    {%- endif -%}
</div>