Skip to content

Instantly share code, notes, and snippets.

@texnixe
Created October 21, 2014 16:39
Show Gist options
  • Save texnixe/8feca13fb72524995f61 to your computer and use it in GitHub Desktop.
Save texnixe/8feca13fb72524995f61 to your computer and use it in GitHub Desktop.
Kirby 2 Language Switch
<nav class="languages" role="navigation'">
<?php foreach($site->languages() as $language): ?>
<?php $inventory = $page->inventory();
if (array_key_exists($language->code(),$inventory['content'])) :?>
<?php if(($site->language() !== $language)): ?>
<span>
<a href="<?php echo $page->url($language->code()) ?>"><?php echo $language->code(); ?></a>
</span>
<?php endif ?>
<?php endif ?>
<?php endforeach?>
</nav>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment