Section & Variations › Careers

Available Parameters
Parameter Type Description
variation Text
required
Default : careers-variation-1
Selected variations for Careers section.
List of available variations :
  • careers-variation-1
  • careers-variation-2
title Text
required
Set title for Careers section.
description Text Set description for careers section
items Array of Careers Item
Available for : careers-variation-2
required
Set list of Careers Item.
Example:
[
    {
        "title"     : "Senior UI/UX Designer",
        "information"     : [
            {
                "icon"     : "ic-bag",
                "text"     : "Full-time"
            },
            {
                "icon"     : "ic-pin",
                "text"     : "Yogyakarta, Indonesia"
            }
        ],
    }
]
button Button Link Object
Available for : careers-variation-1
required
Set link details for button.
Example:
{
    "text"  : "See open positions",
    "link"   : "#"
}
Available Variations
Starter Kit Codes
{# include sections/careers  #}
{% include "sections/careers.twig", with {
    	"variation"	: "careers-variation-1",
	"title"		: "Join our team",
	"description"	: "We believe it takes great people to make a great product. That’s why we hire not only the perfect professional fits, but people who embody our company values.",
	"button"	: {
		"text"	: "See open positions",
		"link"	: "#",
	}
  } %}
Section Preview Careers Variation 1
Starter Kit Codes
{# include sections/careers  #}
{% include "sections/careers.twig", with {
    	"variation"	: "careers-variation-2",
	"title"		: "Join our team",
	"items" 	: [
		{
			"title"	: "Content Marketing ",

			"information" : [
				{
					"icon"	: "ic-bag",
					"text"	: "Full-time",
				},
				{
					"icon"	: "ic-pin",
					"text"	: "Yogyakarta, Indonesia",
				},
			],
		{
			"title"	: "Senior UI/UX Designer",

			"information" : [
				{
					"icon"	: "ic-bag",
					"text"	: "Full-time",
				},
				{
					"icon"	: "ic-pin",
					"text"	: "Yogyakarta, Indonesia",
				},
			],
		{
			"title"	: "Social Media Specialist",

			"information" : [
				{
					"icon"	: "ic-bag",
					"text"	: "Full-time",
				},
				{
					"icon"	: "ic-pin",
					"text"	: "Yogyakarta, Indonesia",
				},
			],
		{
			"title"	: "Project Manager",

			"information" : [
				{
					"icon"	: "ic-bag",
					"text"	: "Full-time",
				},
				{
					"icon"	: "ic-pin",
					"text"	: "Yogyakarta, Indonesia",
				},
			],
	]
  } %}
Section Preview Careers Variation 2