Guest User

Untitled

a guest
May 22nd, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. {% set allSites = craft.app.sites.getAllSites() %}
  2. {% set allGroups = allSites|group('allSites.group') %}
  3.  
  4. {% for group, countriesInGroup in allGroups %}
  5. {{ group }} <br>
  6. {% for country in countriesInGroup %}
  7. {{country.language}} <br>
  8. {% endfor %}
  9. {% endfor %}
Add Comment
Please, Sign In to add comment