#4: add stylesheets and basic color scheme

This commit is contained in:
Lexi / Zoe 2019-11-11 18:47:49 +01:00
parent fc21c309cc
commit d102795256
Signed by: binaryDiv
GPG key ID: F8D4956E224DA232
3 changed files with 63 additions and 1 deletions

View file

@ -1,12 +1,18 @@
{% 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>
{% block content %}No content.{% endblock %}
<main>
{% block content %}No content.{% endblock %}
</main>
</body>
</html>