Grids provide a native, Markdown-driven layout system. Use the grids container to structure elements side-by-side. Columns automatically fill available space and stack vertically on smaller screens.

Syntax Reference

::: grids
    ::: grid
        Content for the first column.
    :::
    ::: grid
        Content for the second column.
    :::
:::
Container Description
::: grids The parent container that initiates the responsive flexbox layout.
::: grid Each child grid block acts as an individual column. Add as many as needed.

Examples

Side-by-Side Cards

Combine grids with cards to display multiple features in a clean, responsive layout.

::: grids
    ::: grid
        ::: card "Speed" icon:zap
        Built on a non-blocking I/O pipeline for maximum performance.
        :::
    :::
    ::: grid
        ::: card "Scalability" icon:layers
        Designed for massive monorepos and extensive project structures.
        :::
    :::
:::
Speed

Built on a non-blocking I/O pipeline for maximum performance.

Scalability

Designed for massive monorepos and extensive project structures.

Three-Column Layout

Add a third grid block to create a three-column row. Columns automatically balance their widths.

::: grids
    ::: grid
        ::: card "Search" icon:search
        Client-side full-text search powered by MiniSearch.
        :::
    :::
    ::: grid
        ::: card "i18n" icon:globe
        First-class locale routing and translated search indexes.
        :::
    :::
    ::: grid
        ::: card "Themes" icon:palette
        Built-in dark mode and full CSS variable customisation.
        :::
    :::
:::
Search

Client-side full-text search powered by MiniSearch.

i18n

First-class locale routing and translated search indexes.

Themes

Built-in dark mode and full CSS variable customisation.

Semantic Layouts

The grids container keeps your structure purely in Markdown. This results in cleaner source files and ensures LLMs interpret structural relationships accurately.