Initial (overdue) commit

TODO:
- enable dynamic loading of button labels and actions
This commit is contained in:
2020-08-27 17:21:17 -07:00
parent 6e83bfb9c5
commit c5b61eee0a
42 changed files with 2739 additions and 1 deletions

View File

@@ -0,0 +1,21 @@
<!doctype html>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>{% block title %}{% endblock %} - CMDRConsole</title>
<link href="{{ url_for('static', filename='CMDRConsole.css') }}" rel="stylesheet">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script src="{{ url_for('static', filename='CMDRConsole.js') }}"></script>
<div class="container">
<div class="header-grid">
<a href="/General"><button class="header-button">General</button></a>
<a href="/Mining"><button class="header-button">Mining</button></a>
<a href="/Exploration"><button class="header-button">Exploration</button></a>
<a href="/SRV"><button class="header-button">SRV</button></a>
<a href="/Keyboard"><button class="header-button">Keyboard</button></a>
</div>
{% block buttons %}{% endblock %}
</div>