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

19 lines
411 B
HTML

{% load static %}
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>{% block title %}Tofu{% endblock %} - Tofu</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="{% static "css/style.css" %}">
</head>
<body>
<h1>Tofu</h1>
<main>
{% block content %}No content.{% endblock %}
</main>
</body>
</html>