28 lines
977 B
HTML
28 lines
977 B
HTML
{% extends 'base.html' %}
|
|
|
|
{% block title %}Mining{% endblock %}
|
|
|
|
{% block buttons %}
|
|
<div class="button-grid">
|
|
<button class="grid-button">Speed Boost</button>
|
|
<button class="grid-button">Hardpoints</button>
|
|
<button class="grid-button">Drop Chaff</button>
|
|
<button class="grid-button">Frameshift</button>
|
|
|
|
<button class="grid-button">75% Throttle</button>
|
|
<button class="grid-button">Cargo Bay</button>
|
|
<button class="grid-button">Shield Cell</button>
|
|
<button class="grid-button">Supercruise</button>
|
|
|
|
<button class="grid-button">Full Stop</button>
|
|
<button class="grid-button">Fuel Scoop</button>
|
|
<button class="grid-button">Heat Sink</button>
|
|
<button class="grid-button">Run Silent</button>
|
|
|
|
<button class="grid-button">Full Reverse</button>
|
|
<button class="grid-button">Landing Gear</button>
|
|
<button class="grid-button">ECM</button>
|
|
<button class="grid-button">Toggle Lights</button>
|
|
</container>
|
|
{% endblock %}
|