Initial (overdue) commit
TODO: - enable dynamic loading of button labels and actions
This commit is contained in:
21
CMDRConsole/templates/base.html
Normal file
21
CMDRConsole/templates/base.html
Normal 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>
|
||||
|
||||
Reference in New Issue
Block a user