edh-elo/app/templates/base.html
Jack Jackson e4ea529fbe Cosmetic and final-basic functionality
At this point it _should_ be just about usable for folks to poke-around
in, though ugly as sin.
2024-06-09 09:45:56 -07:00

38 lines
1.2 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
{% block head %}
<title>{% block title %}{% endblock %}</title>
<script
src="https://code.jquery.com/jquery-3.7.1.min.js"
integrity="sha256-/JqT3SQfawRcv/BIHPThkBvs0OEvtFFmqPF/lYI/Cxo="
crossorigin="anonymous"></script>
<link rel="stylesheet" href="/static/css/base.css"/>
{% endblock %}
</head>
<body>
<div id="header">
<div id="header_main_anchor">
<a id="main_anchor" href="/">EDH ELO</a>
</div>
<div id="topbar">
<a class="topbar_item" href="/game/list">Games</a>
<a class="topbar_item" href="/deck/list">Decks</a>
<a class="topbar_item" href="/player/list">Players</a>
</div>
<div id="create_game_button">
<a id="create_game_link" href="/game/create">Record New Game</a>
</div>
</div>
<div id="content">{% block content %}{% endblock %}</div>
<div id="footer">
{% block footer %}
{% endblock %}
</div>
<footer>
<a id="about" href="/about">About</a>
<span id="credits">Made with Love and Python by <a href="https://fosstodon.org/@scubbo">Scubbo</a></div>
</footer>
</body>
</html>