Radical Design Course by Jack McDade

From the creator of Statamic

Learn how to make your websites standout and be remembered.

Bought Jack McDade's course on design. Going through it now...and it is SO well done!

— Justin Jackson, Transistor.fm

sites

A collection containing all the configured sites as Statamic\Sites\Site objects which you can loop over using a tag pair.

# resources/sites.yaml
english:
name: English Site
url: 'http://mysite.com/'
locale: en_US
direction: ltr
attributes:
foo: bar
french:
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
english
English Site
en_US
en
http://mysite.com/
ltr
bar
 
french
French Site
fr_FR
fr
http://mysite.com.fr/
ltr
baz
Docs feedback

Submit improvements, related content, or suggestions through Github.

Betterify this page →