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

# Link

> Link to another page in Evidence or an external location

```liquid theme={null}
[Link Text](href)
```

## Examples

### Basic usage

```liquid theme={null}
[Link Text](href)
```

### Link to another Evidence page

```liquid theme={null}
<!-- Root page, not in a folder -->
[My Other Page](/project-slug/page-slug)

<!-- Page within a folder -->
[My Other Page](/project-slug/folder-slug/page-slug)

<!-- Page nested depply within folders -->
[My Other Page](/project-slug/folder1-slug/folder2-slug/page-slug)
```

### Link to an external site

```liquid theme={null}
[My External Site](https://example.com)
```

## Attributes

<ResponseField name="href" type="string" required>
  Either an absolute URL to link to an external page, or a path to an Evidence page in the format `/<projectSlug>/<...folderSlugs>/<pageSlug>`
</ResponseField>
