vtt/src/ttfrog/themes/default/base.html
2025-10-18 11:23:03 -07:00

42 lines
1.1 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>{% block title %}TTFROG{% endblock %}</title>
<link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='site.css' ) }}">
{% block styles %}
{% endblock %}
</head>
<body>
<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>
{% block nav %}
{% include "nav.html" %}
{% include "breadcrumbs.html" %}
{% endblock %}
<div class='main-aligned'>
<div class='content'>
<main>
{% for message in g.messages %}
<div class="alert">
{{ message }}
</div>
{% endfor %}
{% block content %}{% endblock %}
</main>
</div>
</div>
<footer>
{% block footer %}
fnord
{% endblock %}
</footer>
{% block scripts %}{% endblock %}
</body>
</html>