display: improve page layout

Signed-off-by: Ralf Ramsauer <ralf@binary-kitchen.de>
This commit is contained in:
Ralf Ramsauer 2018-03-18 16:31:01 +01:00
parent 5fe83e59f9
commit 3e8fce5b81
1 changed files with 10 additions and 3 deletions

View File

@ -18,8 +18,15 @@
{% endblock %}
{% block content %}
<h1>Willkommen in der Binary Kitchen!</h1>
<div id="led"></div>
<div id="message"></div>
<h1 class="text-center">Willkommen in der Binary Kitchen!</h1>
<div class="row">
<div class="col-md-3 text-center">
<div id="led"></div>
<div id="message"></div>
</div>
<div class="col-md-8">
<!-- Here's still space left! -->
</div>
</div>
{{ super() }}
{% endblock %}