Created
October 21, 2014 16:39
-
-
Save texnixe/8feca13fb72524995f61 to your computer and use it in GitHub Desktop.
Kirby 2 Language Switch
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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