2025-02-04 22:44:40 +01:00
|
|
|
<!-- _templates/layout.html -->
|
|
|
|
{% extends "!layout.html" %}
|
|
|
|
|
|
|
|
{% block navigation %}
|
|
|
|
{{ super() }}
|
|
|
|
<div class="sidebar-versions">
|
|
|
|
<div class="version-wrapper">
|
|
|
|
<label for="version-switch">Documentation Version:</label>
|
|
|
|
<select id="version-switch" onchange="window.location.href=this.value">
|
2025-02-05 01:03:04 +01:00
|
|
|
<option value="/CommandStation-EX/"{% if version == "main" %} selected{% endif %}>
|
2025-02-04 22:44:40 +01:00
|
|
|
Production
|
|
|
|
</option>
|
2025-02-05 10:02:57 +01:00
|
|
|
<option value="/CommandStation-EX/devel/html/"{% if version == "devel" %} selected{% endif %}>
|
2025-02-04 22:44:40 +01:00
|
|
|
Development
|
|
|
|
</option>
|
|
|
|
</select>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% endblock %}
|