diff options
| author | 2022-02-19 20:55:07 +0100 | |
|---|---|---|
| committer | 2022-02-19 20:55:07 +0100 | |
| commit | 8b3f0aa590b51cfd7696ed212adf94fa43a0e858 (patch) | |
| tree | daefae18ee470d4f2f1622779d3cbf52d2bdeb61 /templates/base.html | |
initial
Diffstat (limited to 'templates/base.html')
| -rw-r--r-- | templates/base.html | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/templates/base.html b/templates/base.html new file mode 100644 index 0000000..149831a --- /dev/null +++ b/templates/base.html @@ -0,0 +1,19 @@ +<!DOCTYPE html> +<html lang="en"> + +<head> + <meta charset="utf-8"> + <meta name="viewport" content="width=device-width, initial-scale=1.0"> + <title>{% block title %} {% endblock %}</title> + <link rel="stylesheet" href="/style.css"/> +</head> + +<body> + <section class="section"> + <div class="container"> + {% block content %} {% endblock %} + </div> + </section> +</body> + +</html> |