40a4df3767
* Simple form input fields now use TakeFlight styling * Styles the form widgets as per the styles in our CSS * Styling of TextArea now matches the remaining input types * Adds is_last modifier to navigation dropdown * Adds admin for talk, tutorial, and miniconf proposals * Adds an RSS feed * Adds a link to the RSS page * Unbreaks the old news index page * Adds never_cache to the login page, removes the never cache middleware from the settings
18 lines
538 B
HTML
18 lines
538 B
HTML
{% load sitetree %}
|
|
|
|
<div class="menu-dropdown {% if is_last%}menu-dropdown__last{% endif %}">
|
|
<ul class="link-list" role="menu">
|
|
{% for item in sitetree_items %}
|
|
<li class="link-list--item">
|
|
<a role="menuitem" href="{% sitetree_url for item %}"
|
|
class="link-list--link"
|
|
{% if item.hint %}
|
|
title="{{ item.hint }}"
|
|
{% endif %}
|
|
>
|
|
{{ item.title_resolved }}
|
|
</a>
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
</div>
|