# Robots

Control indexing directives in Thulite SEO with robots meta values in frontmatter, and understand when robots tags are generated or omitted.

The `<meta>` HTML element represents metadata that cannot be represented by other HTML meta-related elements, like `<base>`, `<link>`, `<script>`, `<style>` or `<title>`. If the `name` attribute is set, the `<meta>` element provides document-level metadata, applying to the whole page.

## Settings

You can set `robots` in the frontmatter of a page:

```md
---
seo:
  robots: "noindex, nofollow" # custom robot tags (optional)
---
```

If `robots` is not set, a meta tag is not generated (default).

{{< callout context="note" icon="info-circle" >}}
See Google Search Central for [Valid indexing and serving rules](https://developers.google.com/search/docs/crawling-indexing/robots-meta-tag#directives)
{{< /callout >}}

## Generated meta tags

Thulite SEO generates the following meta tag (if applicable) — for example:

```html
<meta name="robots" content="noindex, nofollow">
```

## Resources

- [Robots `meta` tag, `data-nosnippet`, and `X-Robots-Tag` specifications](https://developers.google.com/search/docs/crawling-indexing/robots-meta-tag)
