diff options
| author | Jokler <jokler@protonmail.com> | 2020-06-21 06:37:46 +0200 |
|---|---|---|
| committer | Jokler <jokler@protonmail.com> | 2020-06-21 06:37:46 +0200 |
| commit | e6468b012d5b33dd16992652da57f11dd5a6e82f (patch) | |
| tree | e89add440df79d4036b9b44d8c77ee6d69e67201 /templates/base.htm | |
| download | joklerpoints-e6468b012d5b33dd16992652da57f11dd5a6e82f.tar.gz joklerpoints-e6468b012d5b33dd16992652da57f11dd5a6e82f.zip | |
Diffstat (limited to 'templates/base.htm')
| -rw-r--r-- | templates/base.htm | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/templates/base.htm b/templates/base.htm new file mode 100644 index 0000000..b55244d --- /dev/null +++ b/templates/base.htm @@ -0,0 +1,18 @@ +<!DOCTYPE html> +<html lang="en"> + <head> + <meta charset="UTF-8"> + <meta name="viewport" content="width=device-width, initial-scale=1.0"> + <meta http-equiv="X-UA-Compatible" content="ie=edge"> + <link rel="stylesheet" href="/static/css/style.css"> + <title>{% block title %}{{ title }} - xyz {% endblock %}</title> + </head> + <body> + <main> + {% block content %}{% endblock %} + </main> + </body> +</html> + +<!-- vim: expandtab sw=2 ts=2 +--> |
