The Experience section renders an interactive tabbed timeline of your work history. Companies appear as tabs across the top; clicking a company tab reveals all roles you held there, each with a title, date range, description, and optional technology icons. All configuration lives underDocumentation Index
Fetch the complete documentation index at: https://mintlify.com/gurusabarish/hugo-profile/llms.txt
Use this file to discover all available pages before exploring further.
params.experience in your hugo.yaml.
Enable the section
Set to
true to render the Experience section on your home page.Custom section heading. Defaults to the i18n key
"Experience" when omitted.Data structure
Theitems array holds one entry per company. Each company entry contains a jobs array with one entry per role held at that company.
Companies are rendered as tab buttons in the order they appear in
items. List your most recent employer first so it appears as the default active tab.Company-level fields
The company name. Displayed as both a tab label and inline next to the first job title.
URL of the company website. Used as the
href on the company name link displayed next to the first job title.An array of job objects held at this company. See the job-level fields below.
Job-level fields
Your job title (e.g.,
"Senior Software Developer"). The first job in each company’s list is styled as a larger heading (h4); subsequent jobs use h5.A human-readable date range string (e.g.,
"Jan 2023 - present" or "Sep 2020 - Dec 2021"). Displayed to the right of the job title.Description of your responsibilities and achievements. Supports full Markdown — include bullet lists, bold text, and links. Use the
| YAML block scalar for multi-line content:Optional short text shown as a tooltip on a small info icon (ⓘ) next to the job title. Use it for a one-line summary or status badge (e.g.,
"Working as a senior software developer").Featured technology icons
Each job can display a row of technology icons linking to relevant tools, frameworks, or external resources.Technology icons using Font Awesome class names. Each object accepts:
| Key | Type | Description |
|---|---|---|
icon | string | Font Awesome class string (e.g., fa-brands fa-react) |
url | string | Link destination URL |
tooltip | string | Optional tooltip text shown on hover |
Technology icons using custom image files. Each object accepts:
| Key | Type | Description |
|---|---|---|
icon | string | Path to the icon image (e.g., /images/icons/go.png) |
url | string | Link destination URL |
tooltip | string | Optional tooltip text shown on hover |