fixed row.html shortcode bug

This commit is contained in:
timurgordon 2022-02-16 05:54:58 +03:00
parent 10eefa2753
commit 75f20cfe8a
14 changed files with 4 additions and 6 deletions

View File

@ -7,11 +7,9 @@ extra:
imgPath: "/images/careers-hero.jpg"
---
{% rowWithBackground(imagePath="/images/careers-hero.jpg") %}
# Rebuild the web
![Image](/images/tf_logo.png#bg)
![Image](/images/tf_logo.png#background)
NEAR is on a mission to empower everyone to take back control of their money, their data, and their identity. Join us.

Binary file not shown.

Before

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 83 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 125 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 48 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 22 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 8.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 29 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 44 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 34 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 27 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 15 KiB

View File

@ -1,5 +1,5 @@
{% set columns = body | split(pat="|||") %}
{% set columns = body | safe | markdown | split(pat="|||") %}
{% set classes = "relative mt-12 lg:mt-24 flex flex-col lg:flex-row m-8 sm:m-12 md:m-16 lg:m-20 items-center" %}
{% if isLean %}
{% set classes = "relative flex flex-col lg:flex-row items-baseline" %}
@ -8,7 +8,7 @@
<div class="{{classes}}">
{% for column in columns%}
<div class="flex-1 lg:mx-8">
{{ column }}
{{ column | safe }}
</div>
{% endfor %}
</div>
</div>