A collection containing all the configured sites as Statamic\Sites\Site
objects which you can loop over using a tag pair.
# resources/sites.yamlenglish: name: English Site url: 'http://mysite.com/' locale: en_US direction: ltr attributes: foo: barfrench: name: French Site url: 'http://mysite.com.fr/' locale: en_FR direction: ltr attributes: foo: baz
{{ sites }} {{ handle }} {{ name }} {{ locale }} {{ short_locale }} {{ url }} {{ direction }} {{ attributes }} {{ foo }} {{ /attributes }} {{ /sites }}
@foreach ($sites as $site) {{ $site->handle }} {{ $site->name }} {{ $site->locale }} {{ $site->short_locale }} {{ $site->url }} {{ $site->permalink }} {{ $site->direction }} {{ $site->attributes['foo'] }}@endforeach
englishEnglish Siteen_USenhttp://mysite.com/ltrbar frenchFrench Sitefr_FRfrhttp://mysite.com.fr/ltrbaz