Skip to main content

Documentation 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.

The Achievements section displays a responsive grid of cards that highlight notable accomplishments — hackathon wins, open source milestones, competitive programming results, or any recognition worth showcasing. Items can optionally include an image and a link, and cards without an image render as clean text-only tiles. The section is configured under params.achievements in your hugo.yaml.

Enable the Section

params.achievements.enable
boolean
default:"false"
Set to true to display the Achievements section on the homepage.
params.achievements.title
string
Optional custom heading for the section. Defaults to the built-in i18n string "Achievements" when omitted.

Achievement Item Fields

Add each achievement as an entry under params.achievements.items. The following fields are available per item:
title
string
required
The name of the achievement, rendered as the card heading.
content
string
A short description of the achievement shown inside the card body.
url
string
An optional link for the card. When provided, the entire card becomes a clickable anchor that opens the URL in a new tab.
image
string
Optional path to an image displayed at the top of the card (e.g., /images/achievement.jpg). If omitted, the card renders as text-only.
Items without an image value render as text-only cards. This is intentional — not every achievement needs a visual, and text-only cards blend seamlessly with image cards in the same grid.

Example Configuration

The following example adds five achievements to the section, matching the theme’s example site:
params:
  achievements:
    enable: true
    # title: "Highlights"   # uncomment to override the default heading
    items:
      - title: Google kickstart runner
        content: I solved all problems with optimal solution.
        url: https://example.com
        image: /images/achievement.jpg

      - title: Facebook Hackathon Winner
        content: Developed a product using Artificial Intelligence.
        image: /images/achievement.jpg

      - title: Hugo Profile
        content: Developed a theme and getting 1K+ downloads per month.
        url: "https://github.com/gurusabarish/hugo-profile"
        image: /images/achievement.jpg

      - title: Microsoft Imagine Runner
        content: We are developed a product which can help others.

      - title: Google Summer of Code
        content: Contributed to a open source project.
        url: https://example.com
You can mix items with and without images in the same list. Cards with a url become fully clickable links, which is useful for linking to contest result pages, certificates, or project repositories.

Build docs developers (and LLMs) love