21 lines
778 B
HTML
21 lines
778 B
HTML
<!-- Header -->
|
|
<div id="titlebar" style="padding: 15px; margin: -15px; padding-bottom: 30px;">
|
|
|
|
<!-- drag region class: -->
|
|
<!-- <div id="titlebar" class="pywebview-drag-region" style="padding: 15px; margin: -15px; padding-bottom: 30px;"> -->
|
|
|
|
<button class="button is-link"> ☰ </button>
|
|
|
|
{% for item in menu_order %}
|
|
<a href="{{ menu[item][1]}}"> <button class="button is-{% if request.path == menu[item][1] %}info{% else %}dark{% endif %}"> {{ menu[item][0]}} </button></a>
|
|
{% endfor %}
|
|
|
|
|
|
<div style="position: absolute; top: 15px; right: 15px;">
|
|
<a href="/help"> <button class="button is-light"> <b> ? </b> </button></a>
|
|
<button onclick="closeApp()" class="button is-danger" > 🗙 </button>
|
|
</div>
|
|
|
|
</div> <!-- end pywebview-drag-region -->
|
|
<!-- End Header -->
|