design fixes, hiring subpages, and hiring categories added

This commit is contained in:
timurgordon
2022-02-23 21:25:51 +03:00
parent a4c636f176
commit 05ddd75f83
18 changed files with 448 additions and 34 deletions

View File

@@ -4,7 +4,8 @@ Divides markdown into columns by splitting content using column identifier "|||"
Creates equal width blocks in a flex row.
Parameters:
- isLean: if an isLean variable is passed, the row doesn't have outer margins
- style:
- lean: if style is lean, the row doesn't have outer margins
- bgPath: if bgPath is passed, the row has a full width background
-->
@@ -20,11 +21,19 @@ Parameters:
{% set column_classes = "flex-1 lg:mx-8" %}
{% if isLean %}
{% if style %}
{% if "lean" in style %}
{% set classes = "relative flex flex-col lg:flex-row items-baseline w-full" %}
{% set column_classes = "flex-1" %}
{% endif %}
{% if "center" in style %}
{% set classes = classes ~ " text-center" %}
{% endif %}
{% endif %}
{% set styles = "" %}
{% if bgPath %}