Radical Design Course by Jack McDade

From the creator of Statamic

Learn how to make your websites standout and be remembered.

Taking your approach on designing things actually makes it fun, more natural, and overall easier.

— Dominik, Developer

Get Site Tag

It gets a site's config, given it's handle.

Overview

This tag lets you get a site's config. It's useful if you need to display information, like site names or URLs, outside of the context of that site.

For example, you might want to output a site's name & logo in your footer:

{{ get_site:english }}
<a href="{{ permalink }}">
Go to {{ name }}
</a>
{{ /get_site:english }}

If you need to, you can pass the site handle dynamically:

{{ get_site :handle="another_sites_handle" }}
<!-- ... -->
{{ /get_site }}

You can also use it as a single tag:

{{ get_site:english:permalink }}
Docs feedback

Submit improvements, related content, or suggestions through Github.

Betterify this page →