forked from fleg/hswro_org
48 lines
1.5 KiB
HTML
Executable File
48 lines
1.5 KiB
HTML
Executable File
---
|
|
layout: default
|
|
bodyClass: "page-home"
|
|
---
|
|
|
|
|
|
<div class="container">
|
|
<div class="row justify-content-start">
|
|
<div class="content">
|
|
<!--<div class="col-12 col-md-7 col-lg-6 order-2 order-md-1">-->
|
|
{{ content }}
|
|
{% if page.show_call_box %}
|
|
{% include call.html show_button=true %}
|
|
{% endif %}
|
|
<!--</div>-->
|
|
{% if page.intro_image %}
|
|
<!--<div class="col-12 col-md-5 col-lg-6 order-1 order-md-2 position-relative">
|
|
<img alt="{{ page.title }}" class="intro-image{% if page.intro_image_absolute %} intro-image-absolute{% endif %}{% if page.intro_image_hide_on_mobile %} intro-image-hide-mobile{% endif %}" src="{{ page.intro_image | relURL }}" />
|
|
</div>-->
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
{% if site.data.features %}
|
|
<div class="content">
|
|
|
|
<div class="strip strip-grey">
|
|
<div class="container pt-6 pb-6 pt-md-10 pb-md-10">
|
|
<div class="row justify-content-center">
|
|
<h1>Siedziba</h1>
|
|
{% for feature in site.data.features %}
|
|
<div class="col-12 col-md-6 col-lg-4 mb-2">
|
|
<div class="feature">
|
|
{% if feature.image %}
|
|
<div class="feature-image"><img alt="{{ feature.title }} logo" src="{{ feature.image.url | relative_url }}" width="{{ feature.image.width }}" height="{{ feature.image.height }}" /></div>
|
|
{% endif %}
|
|
<h2 class="feature-title">{{ feature.title }}</h2>
|
|
<div class="feature-content">{{ feature.description }}</div>
|
|
</div>
|
|
</div>
|
|
{% endfor %}
|
|
|
|
</div>
|
|
</div>
|
|
</div></div>
|
|
{% endif %}
|