This repository has been archived on 2019-11-11. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
tofu/templates/base.html

19 lines
411 B
HTML
Raw Normal View History

{% 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>