This repository has been archived on 2019-11-11. You can view files and clone it, but cannot push or open issues or pull requests.
tofu/templates/base.html

13 lines
202 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<title>{% block title %}Tofu{% endblock %} - Tofu</title>
</head>
<body>
<h1>Tofu</h1>
{% block content %}No content.{% endblock %}
</body>
</html>