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

39 lines
1.0 KiB
HTML
Raw Normal View History

2025-09-27 16:20:08 -07:00
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>{% block title %}TTFROG{% endblock %}</title>
2025-10-11 15:37:00 -07:00
<link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='site.css' ) }}">
2025-09-27 16:20:08 -07:00
{% block styles %}
{% endblock %}
</head>
<body>
2025-10-11 15:37:00 -07:00
<form id='data_form' method='POST'>
<input type="hidden" id="data_form__id" name="uid" value="{{ page.uid }}">
<input name='title' id="data_form__title" type='text' value="{{ page.title }}">
<textarea name="body" id="data_form__body">{{ page.body }}</textarea>
</form>
2025-10-12 15:36:38 -07:00
{% block nav %}
{% include "nav.html" %}
2025-09-27 16:20:08 -07:00
{% endblock %}
2025-10-12 15:36:38 -07:00
<div class='table-wrapper'>
<main>
{% for message in g.messages %}
<div class="alert">
{{ message }}
</div>
{% endfor %}
{% block content %}{% endblock %}
</main>
</div>
<footer>
{% block footer %}
fnord
{% endblock %}
</footer>
2025-09-27 16:20:08 -07:00
{% block scripts %}{% endblock %}
</body>
</html>