mirror of
https://github.com/mwisnowski/mtg_python_deckbuilder.git
synced 2025-09-21 20:40:47 +02:00
13 lines
550 B
HTML
13 lines
550 B
HTML
{% extends "base.html" %}
|
|
{% block content %}
|
|
<section>
|
|
<div class="actions-grid">
|
|
<a class="action-button primary" href="/build">Build a Deck</a>
|
|
<a class="action-button" href="/configs">Run a JSON Config</a>
|
|
{% if show_setup %}<a class="action-button" href="/setup">Initial Setup</a>{% endif %}
|
|
<a class="action-button" href="/owned">Owned Library</a>
|
|
<a class="action-button" href="/decks">Finished Decks</a>
|
|
{% if show_logs %}<a class="action-button" href="/logs">View Logs</a>{% endif %}
|
|
</div>
|
|
</section>
|
|
{% endblock %}
|