You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
fear_tracker/fear_tracker/templates/base.html

34 lines
1.1 KiB
HTML

{% load static %}
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<link rel="stylesheet" href="{% static 'css/styles.css' %}" type="text/css">
<title>Spirit Island Fear Tracker</title>
{% block header_script %}{% endblock %}
</head>
<body>
{% block content %}{% endblock %}
<footer>
<hr>
<p>
<a href="https://boardgamegeek.com/boardgame/162886/spirit-island">Spirit
Island</a>
was designed by
<a href="https://boardgamegeek.com/boardgamedesigner/16615/r-eric-reuss">Eric Reuss</a>
and published by
<a href="https://www.greaterthangames.com/">Greater Than Games</a>
</p>
<p>
Spirit Island Fear Tracker was built by
<a href="https://aweirdimagination.net/~perelman/">Daniel Perelman</a>
|
<a href="https://git.aweirdimagination.net/perelman/fear_tracker">source
code</a> licensed under
<a href="https://www.gnu.org/licenses/agpl-3.0.html">AGPLv3+</a>
</p>
</footer>
</body>
</html>