vtt/src/ttfrog/themes/default/base.html

41 lines
1006 B
HTML
Raw Normal View History

2025-09-27 16:20:08 -07:00
<!DOCTYPE html>
<html>
<head>
{% block head %}
<meta charset="utf-8">
<title>{% block title %}TTFROG{% endblock %}</title>
<link rel="icon" type="image/x-icon" href="{{ url_for('static', filename='favicon.ico') }}">
{% block styles %}
<link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='style.css' ) }}">
{% endblock %}
{% endblock %}
</head>
<body>
<nav>
2025-10-04 01:26:09 -07:00
{% for uri, name in breadcrumbs %}
<span>&nbsp; / <a href="{{ app.config.VIEW_URI }}{{ uri }}">{{ name }}</a></span>
{% endfor %}
2025-09-27 16:20:08 -07:00
</nav>
2025-09-28 14:14:16 -07:00
<nav>
Menu:
2025-09-28 14:14:16 -07:00
<ul>
{% block menu %}{% endblock %}
</ul>
</nav>
2025-09-27 16:20:08 -07:00
<main>
{% for message in get_flashed_messages() %}
<div class="alert">
{{ message }}
</div>
{% endfor %}
{% block content %}{% endblock %}
</main>
<footer>
{% block footer %}
{% endblock %}
</footer>
{% block scripts %}{% endblock %}
</body>
</html>