last secs

This commit is contained in:
samaradel 2022-10-12 18:19:01 +02:00
parent 48d39ccc11
commit 80242e8143
8 changed files with 53 additions and 7 deletions

View File

Before

Width:  |  Height:  |  Size: 2.2 MiB

After

Width:  |  Height:  |  Size: 2.2 MiB

BIN
content/home/RGAsset21.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.2 MiB

View File

Before

Width:  |  Height:  |  Size: 2.4 KiB

After

Width:  |  Height:  |  Size: 2.4 KiB

View File

@ -136,4 +136,39 @@ Enjoy the benefits of community-building sessions and tools built specifically f
Enjoy all the cultural, natural, sports and networking evnts of the locations! Enjoy all the cultural, natural, sports and networking evnts of the locations!
{% end %} {% end %}
<!-- section 5 -->
{% row(style="center margin") %}
## REGENERATE <br /> YOURSELF
Regenerative farming is part of the OurWorld experience
All residents and staff members have direct access to local organic produce that helps us heal and
empowers the local community!
|||
![Image](RGAsset20.png)
{% end %}
<!-- section 6 -->
{% row(style="center margin narrow") %}
## START YOUR QURWORLD <br> EXPERIENCE NOW!
Begin your nomadic journey with us.
<button>[OUR LOCATIONS](/)</button>
{% end %}
{% row(margin="header" bgPath="RGAsset21.png" bgStyle="full") %}
<div class="img"></div>
{% end %}

View File

@ -23,6 +23,8 @@
} }
/* Custom css allowing image styling in markdown */ /* Custom css allowing image styling in markdown */
img[src*="#mx-auto"] { img[src*="#mx-auto"] {
margin: auto; margin: auto;
} }
@ -177,8 +179,7 @@ footer .freeflow {
} }
footer .freeflow img { footer .freeflow img {
width: 200px; width: 60px;
margin-bottom: 20px;
} }

BIN
static/images/RGAsset8.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.4 KiB

View File

@ -13,9 +13,9 @@
{{ section.content | safe }} {{ section.content | safe }}
{% else %} {% else %}
{% set footer_class = config.extra.footer_class | default(value='') %} {% set footer_class = config.extra.footer_class | default(value='') %}
<div class="{{ footer_class ~ ' -mx-20 pt-20'}}"> <div class="{{ footer_class ~ ' -mx-20'}}">
<img src="{{get_url(path='images/footer_logo.png')}}" alt=""> <img src="{{get_url(path='images/RGAsset8.png')}}" class="w-60" alt="">
ALL RIGHTS RESERVED 2022 <p class="text-center">OURWORLD <br /> DFIGITAL NOMADS</p>
</div> </div>
{% endif %} {% endif %}
</footer> </footer>

View File

@ -121,6 +121,11 @@ Parameters:
{% set col_class = col_class ~ " flex-1 " %} {% set col_class = col_class ~ " flex-1 " %}
{% endif %} {% endif %}
{% if "items-end" in style %}
{% set row_class = row_class ~ " lg:items-end" %}
{% set col_class = col_class ~ " flex-1 " %}
{% endif %}
<!-- makes row semi-full screen width, strips margins --> <!-- makes row semi-full screen width, strips margins -->
{% if "between" in style %} {% if "between" in style %}
{% set row_class = row_class ~ " lg:max-w-6xl " %} {% set row_class = row_class ~ " lg:max-w-6xl " %}
@ -181,11 +186,16 @@ Parameters:
{% set row_class = row_class %} {% set row_class = row_class %}
{% endif %} {% endif %}
{% if class %}
{% set styles = "background-color: " ~ bgColor ~ "; background-size: cover" %}
{% set row_class = row_class %}
{% endif %}
<!-- Cancels page margins so that rows can have separate margins --> <!-- Cancels page margins so that rows can have separate margins -->
{% set no_margins = " -mx-8 md:-mx-12 lg:-mx-16 xl:-mx-20" %} {% set no_margins = " -mx-8 md:-mx-12 lg:-mx-16 xl:-mx-20" %}
<div id="{{anchor_link}}" class="{{'w-screen relative justify-center flex overflow-hidden ' ~ div_class }}" style="{{styles}}"> <div id="{{anchor_link}}" class="{{'relative justify-center flex overflow-hidden ' ~ div_class }}" style="{{styles}}">
<div id="{{row_id}}" class="{{row_class}}" style="min-width: -webkit-fill-available; min-width: -moz-available"> <div id="{{row_id}}" class="{{row_class}}" style="min-width: -webkit-fill-available; min-width: -moz-available">
{% for column in columns%} {% for column in columns%}