Skip to content

Instantly share code, notes, and snippets.

@ashour
Created February 12, 2019 10:36
Show Gist options
  • Save ashour/3419147b7b6d28a6a4131dca1ebdd729 to your computer and use it in GitHub Desktop.
Save ashour/3419147b7b6d28a6a4131dca1ebdd729 to your computer and use it in GitHub Desktop.
<?php if (!isset($languages)) {
throw new Exception(__('Expected $languages array for printing'));
} ?>
<ul class="pure-menu-list pure-menu-horizontal text-end">
<?php foreach ($languages as $language) : ?>
<li class="pure-menu-item">
<a class="pure-menu-link" href="<?php echo $language['url']; ?>">
<?php echo $language['name']; ?>
</a>
</li>
<?php endforeach; ?>
</ul>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment