Skip to content

Instantly share code, notes, and snippets.

@tdelam
Created August 22, 2012 19:02
Show Gist options
  • Select an option

  • Save tdelam/3428430 to your computer and use it in GitHub Desktop.

Select an option

Save tdelam/3428430 to your computer and use it in GitHub Desktop.
{% load language_switcher %}
<nav id="main">
<ul>
{% for item in menu|slice:"0:4" %}
<li><a {% if item.active %}class=""{% endif %} href="{{ item.url }}">{{ item.name }}</a></li>
{% endfor %}
</ul>
{% lang_switcher_tag %}
<ul>
<li id="presenter"><a href=""><img src="/media/images/presenter.jpg" alt="Festival Presenter" /></a></li>
</ul>
</nav>
<nav id="sub">
<ul>
{% for item in menu|slice:"4:" %}
<li><a {% if item.active %}class=""{% endif %} href="{{ item.url }}">{{ item.name }}</a></li>
{% endfor %}
</ul>
</nav>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment