31 lines
936 B
HTML
31 lines
936 B
HTML
{% extends "!layout.html" %}
|
|
{% block sidebartitle %}
|
|
{% if logo and theme_logo_only %}
|
|
<a href="{{ pathto(master_doc) }}">
|
|
{% else %}
|
|
<a href="{{ pathto(master_doc) }}" class="icon icon-home"> {{ project }}
|
|
{% endif %}
|
|
|
|
{% if logo %}
|
|
{# Not strictly valid HTML, but it's the only way to display/scale
|
|
it properly, without weird scripting or heaps of work
|
|
#}
|
|
<img src="{{ pathto('_static/' + logo, 1) }}" class="logo" alt="{{ _('Logo') }}"/>
|
|
{% endif %}
|
|
</a>
|
|
|
|
<!-- this version selector is quite ugly, should be probably replaced by something
|
|
more modern -->
|
|
|
|
<div class="version-selector">
|
|
<select>
|
|
{% for nuttx_version in nuttx_versions %}
|
|
<option value="{{ nuttx_version }}" {% if nuttx_version == version %}selected="selected"{% endif %}>{{ nuttx_version }}</option>
|
|
{% endfor %}
|
|
</select>
|
|
</div>
|
|
|
|
{% include "searchbox.html" %}
|
|
{% endblock %}
|
|
|