<ul id="language_menu">
{% for language in site.languages %}
<li{% if language.selected? %} class="active"{% endif %}>
<a href="{{ language.url }}">{{ language.title }}</a>
</li>
{% endfor %}
</ul>Notice that if currently viewed page has a translation in another language on your site then language.url will link directly to this page. Otherwise it will link to front page in this language.