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

13 lines
376 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<meta http-equiv='X-UA-Compatible' content='IE=edge'>
<title>the south london library</title>
<meta name='viewport' content='width=device-width, initial-scale=1'>
<link rel='stylesheet' type='text/css' media='screen' href='main.css'>
</head>
<body>
{% block content %} {% endblock %}
</body>
</html>