{{{
use \lithium\core\Environment;
?>
<div id="locale-navigation">
<ul>
<?php foreach (Environment::get('locales') as $locale => $name):
$url = compact('locale') + $this->_request->params;
?>
<li><?=$this->Html->link($name, $url); ?></li>
<?php endforeach; ?>
</ul>
</div>}}}