#4: add stylesheets and basic color scheme
This commit is contained in:
parent
fc21c309cc
commit
d102795256
3 changed files with 63 additions and 1 deletions
|
|
@ -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>
|
||||
|
|
|
|||
Reference in a new issue