fixed row.html shortcode bug
@ -7,11 +7,9 @@ extra:
|
|||||||
imgPath: "/images/careers-hero.jpg"
|
imgPath: "/images/careers-hero.jpg"
|
||||||
---
|
---
|
||||||
|
|
||||||
{% rowWithBackground(imagePath="/images/careers-hero.jpg") %}
|
|
||||||
|
|
||||||
# Rebuild the web
|
# Rebuild the web
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
NEAR is on a mission to empower everyone to take back control of their money, their data, and their identity. Join us.
|
NEAR is on a mission to empower everyone to take back control of their money, their data, and their identity. Join us.
|
||||||
|
|
||||||
|
Before Width: | Height: | Size: 18 KiB |
Before Width: | Height: | Size: 83 KiB |
Before Width: | Height: | Size: 125 KiB |
Before Width: | Height: | Size: 11 KiB |
Before Width: | Height: | Size: 48 KiB |
Before Width: | Height: | Size: 22 KiB |
Before Width: | Height: | Size: 8.8 KiB |
Before Width: | Height: | Size: 29 KiB |
Before Width: | Height: | Size: 44 KiB |
Before Width: | Height: | Size: 34 KiB |
Before Width: | Height: | Size: 27 KiB |
Before Width: | Height: | Size: 15 KiB |
@ -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" %}
|
{% 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 %}
|
{% if isLean %}
|
||||||
{% set classes = "relative flex flex-col lg:flex-row items-baseline" %}
|
{% set classes = "relative flex flex-col lg:flex-row items-baseline" %}
|
||||||
@ -8,7 +8,7 @@
|
|||||||
<div class="{{classes}}">
|
<div class="{{classes}}">
|
||||||
{% for column in columns%}
|
{% for column in columns%}
|
||||||
<div class="flex-1 lg:mx-8">
|
<div class="flex-1 lg:mx-8">
|
||||||
{{ column }}
|
{{ column | safe }}
|
||||||
{% endfor %}
|
|
||||||
</div>
|
</div>
|
||||||
|
{% endfor %}
|
||||||
</div>
|
</div>
|