> ## Documentation Index
> Fetch the complete documentation index at: https://docs.blode.md/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Frontmatter

All available YAML frontmatter fields for documentation pages.

Every MDX page starts with YAML frontmatter between `---` delimiters. The `title` field is required. All other fields are optional.

## Fields

- `title` (type: string, required: true): Page title displayed in the header and browser tab.
- `description` (type: string): Summary used in meta tags and search results.
- `sidebarTitle` (type: string): Override the title shown in the sidebar navigation.
- `icon` (type: string): Icon displayed next to the page title in the sidebar.
- `iconType` (type: "regular" | "solid" | "light" | "thin" | "sharp-solid" | "duotone" | "brands"): Icon style variant.
- `mode` (type: "default" | "wide" | "custom" | "frame" | "center", default: "default"): Page layout mode.
- `hidden` (type: boolean, default: false): Hide this page from navigation. The page is still accessible via direct URL.
- `deprecated` (type: boolean, default: false): Mark the page as deprecated. Displays a deprecation badge.
- `noindex` (type: boolean, default: false): Prevent search engines from indexing this page.
- `keywords` (type: string[]): Additional keywords for search indexing.
- `tag` (type: string): Display a tag badge next to the page title.
- `url` (type: string): Override the navigation link to point to an external URL.
- `hideApiMarker` (type: boolean): Hide the API method badge on OpenAPI pages.
- `hideFooterPagination` (type: boolean): Hide the previous/next navigation at the bottom of the page.

## Example

```yaml
---
title: Authentication
description: Learn how to authenticate API requests.
icon: lock
tag: Updated
mode: wide
---
```