37 lines
1.3 KiB
HTML
37 lines
1.3 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf8" />
|
|
<link rel="stylesheet" href="/media/mtg.css" />
|
|
<title>{% block title %}MTG Armory{% endblock %}</title>
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<h1>MTG Armory</h1>
|
|
</header>
|
|
<section id="navigation">
|
|
<ul>
|
|
<li><a href="{% url mtgweb.analyzer.views.index %}">Home</a></li>
|
|
<li><a href="/cards/">Cards</a></li>
|
|
<li><a href="/decks/">Decks</a></li>
|
|
</ul>
|
|
</section>
|
|
<section id="content">
|
|
{% block content %}
|
|
<h2>Welcome to the MTG Armory</h2>
|
|
<p>
|
|
Someday this might grow up into yet another deck builder
|
|
site for folks to flock to and keep track of their stuff.
|
|
For now, though, it's just an awful looking dumping ground
|
|
for my own decks and Python experimentation.
|
|
</p>
|
|
<p>
|
|
This whole thing is just an excercise in learning Django
|
|
and HTML5, so don't expect too much out of it. Ever.
|
|
</p>
|
|
{% endblock %}
|
|
</section>
|
|
<footer>
|
|
</footer>
|
|
</body>
|
|
</html>
|