forked from waifu/kemoverse
30 lines
794 B
HTML
30 lines
794 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='style.css') }}">
|
|
<link rel="shortcut icon" href="{{ url_for('static', filename='logo.png') }}">
|
|
<title>
|
|
{% if title %}
|
|
{{ title }}
|
|
{% else %}
|
|
{% block title %}{% endblock %}
|
|
{% endif %}
|
|
| Kemoverse
|
|
</title>
|
|
</head>
|
|
<body>
|
|
<header>
|
|
{% block header %}{% endblock %}
|
|
</header>
|
|
|
|
<div class="container">
|
|
{% block content %}{% endblock %}
|
|
</div>
|
|
|
|
<footer>
|
|
<a class="footer-link" href="{{ url_for('about') }}">About</a>
|
|
<a class="footer-link" href="{{ url_for('submit_character') }}">Submit a Character</a>
|
|
{% block footer_extra %}{% endblock %}
|
|
</footer>
|
|
</body>
|
|
</html>
|