LEFT | RIGHT |
1 {{- site_globals('test') }} | 1 site_globals('test') = {{ site_globals('test') }} |
2 {{- has_string('temp') }} | 2 has_string('temp') = {{ has_string('temp') }} |
3 {{- has_string('exists', 'global') }} | 3 has_string('exists', 'global') = {{ has_string('exists', 'global') }} |
4 {{- get_string('exists', 'global') }} | 4 get_string('exists', 'global') = {{ get_string('exists', 'global') }} |
5 {{- page_has_locale('global', 'en') }} | 5 page_has_locale('global', 'en') = {{ page_has_locale('global', 'en') }} |
6 {{- page_has_locale('global', 'de') }} | 6 page_has_locale('global', 'de') = {{ page_has_locale('global', 'de') }} |
LEFT | RIGHT |