# Sites

Allows you to select one or more sites when running a [multi site](/multi-site.md).

## Usage

```yaml
fields:
  my_sites_field:
    type: sites
```

The Sites fieldtype is a [Relationship fieldtype](/relationships.md#fieldtypes), and will save the site or sites as their handles (the config name).

```yaml
sites:
  - english
  - french
  - german
```

## Templating

You're more than likely using this field as a way to dynamically fetch content from a specific site other than the current one.

The following example assumes `max_items` has been set to `1`:

::tabs

::tab antlers
```antlers
<ul>
  {{ collection:news :site="my_sites_field" }}
    <li>{{ title }}</li>
  {{ /collection:news }}
</ul>
```
::tab blade
```blade
<ul>
	<statamic:collection:news
		:site="$my_sites_field"
	>
		<li>{{ $title }}</li>
	</statamic:collection:news>
</ul>
```
::

```html
<ul>
  <li>Bonjour!</li>
  <li>Ton tonton tond ton thon</li>
  <li>etc</li>
</ul>
```
