Section & Variations › Features

Available Parameters
Parameter Type Description
variation Text
required
Default : features-variation-1
Set variation for Features section.
List of available variations :
  • features-variation-1
title Text Set title for Features section.
items Array of Features Item
required
Set list of Features item.
Example:
[
  {
    "icon"          : "ic-suitcase-rolling primary",
    "title"         : "Personalized Itineraries",
    "description"   : "We create custom travel plans tailored to your interests and preferences, ensuring every moment of your trip is perfect."
  }
]
Available Variations
Features Starter Kit Codes
{# include sections/features  #}
{% include "../resources/sections/features.twig", with {
    	'variation'	: 'features-variation-1',

	'title'		: 'Why travel with us?',

	'items'	: [
		{
			'icon'			: 'ic-suitcase-rolling primary',
			'title'			: 'Personalized Itineraries',
			'description'		: 'We create custom travel plans tailored to your interests and preferences, ensuring every moment of your trip is perfect.',
		},
		{
			'icon'			: 'ic-identification-card primary',
			'title'			: 'Expert Guidance',
			'description'		: 'Our team of travel experts is here to assist you every step of the way, from planning to booking to on-the-ground support.',
		},
		{
			'icon'			: 'ic-airplane-tilt primary',
			'title'			: 'Sustainable Travel',
			'description'		: 'We prioritize eco-friendly practices and support local communities to ensure our adventures are as responsible as they are exciting.',
		},
		{
			'icon'			: 'ic-treepalm primary',
			'title'			: 'Cultural Experiences',
			'description'		: 'Immerse yourself in the local culture with guided tours, traditional music, and culinary delights.',
		},
		{
			'icon'			: 'ic-tag primary',
			'title'			: 'Exclusive Deals',
			'description'		: 'Benefit from our partnerships with top hotels, airlines, and tour operators to get the best rates and exclusive offers.',
		},
		{
			'icon'			: 'ic-clock primary',
			'title'			: '24/7 Support',
			'description'		: 'Our team is always on hand to assist you from the moment you book until you return home.',
		},
	]
  } %}