Content Configurations

All content of all pre-built sections on home page you can edit in /data/content.yml file.

All pre-built sections name:

  • about-one

  • about-two

  • awards

  • benefits-two

  • benefits

  • blog-carousel-three

  • blog-carousel-two

  • blog-carousel

  • blog-grid

  • brands-two

  • brands

  • clients

  • contact-form-info

  • contact-form-map

  • cta-one

  • cta-two

  • discovery

  • faq

  • hero-one

  • hero-slider-two

  • hero-slider

  • hero-under

  • how-it-works

  • map

  • marketing-one

  • marketing-two

  • numbers-two

  • numbers

  • offices

  • portfolio-grid

  • portfolio-masonry

  • portfolio-metro

  • pricing

  • projects-carousel-two

  • projects-carousel

  • projects-featured

  • services-grid

  • services-two

  • services

  • team-grid

  • team-one

  • testimonial-four

  • testimonial-one

  • testimonial-three

  • testimonial-two

  • why-choose-us

For example data structure of hero-one section:

### Hero One [ hero-one ]
hero_one:
  enable: true
  title: "<span>Unlock</span> The Full Potential Of Your Business."
  description: "
    Creative concepting and visual design
  "
  button: "More Services"
  link: "/services/"
  image: "images/hero-img.jpg"
  • "enable" - true or false (Enable or Disable section)

  • "field_name" - all others fields are duplicate section data structure

You can use any of these sections names for build your unique page layout, using builder: true param, see example of About page builder structure in /content/about.md file:

---
title: About
builder: true

# Intro Begin
intro: true
intro_title: "We Love<br>What We Do"
intro_subtitle: "About Us"
# Intro End

sections:
  - about-one
  - benefits-two
  - numbers-two
  - awards
  - testimonial-four
---
  • builder: true - this option enable builder for page About

  • sections: - all sections names that will be rendered on About page with data from the /data/content.yml file.

Last updated