forked from Dniel97/artemis
13 lines
712 B
Django/Jinja
13 lines
712 B
Django/Jinja
<div style="background: #333; color: #f9f9f9; width: 10%; height: 50px; line-height: 50px; text-align: center; float: left;">
|
|
Navigation
|
|
</div>
|
|
<div style="background: #333; color: #f9f9f9; width: 80%; height: 50px; line-height: 50px; padding-left: 10px; float: left;">
|
|
<a href=/><button class="btn btn-primary">Home</button></a>
|
|
{% for game in game_list %}
|
|
<a href=game/{{ game.url }}><button class="btn btn-success">{{ game.name }}</button></a>
|
|
{% endfor %}
|
|
</div>
|
|
</div>
|
|
<div style="background: #333; color: #f9f9f9; width: 10%; height: 50px; line-height: 50px; text-align: center; float: left;">
|
|
<a href="/gate"><button class="btn btn-primary">Gate</button></a>
|
|
</div> |