22 lines
974 B
HTML
22 lines
974 B
HTML
<!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>
|
|
|