您最多能選擇 25 個主題 主題必須以字母或數字為開頭,可包含連接號「-」且最長為 35 個字元。
fear_tracker/fear_tracker/templates/base.html

33 行
1.0 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>
</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>