diff options
author | romangraef <roman.graef@gmail.com> | 2018-05-31 08:24:02 +0200 |
---|---|---|
committer | romangraef <roman.graef@gmail.com> | 2018-05-31 08:24:02 +0200 |
commit | 4a11fe9780deb76004be0e229edf298ac7200f0f (patch) | |
tree | 59d5d558f86483b4c73964b4683118cae87228dc /templates/base.html | |
download | my-website-4a11fe9780deb76004be0e229edf298ac7200f0f.tar.gz my-website-4a11fe9780deb76004be0e229edf298ac7200f0f.tar.bz2 my-website-4a11fe9780deb76004be0e229edf298ac7200f0f.zip |
initial commit
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..8d51f29 --- /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, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0"> + <meta http-equiv="X-UA-Compatible" content="ie=edge"> + <title>{% block title %}{{ title }}{% endblock %}</title> + <link href="https://fonts.googleapis.com/css?family=Montserrat" rel="stylesheet"> + <link rel="stylesheet" href="{{ url_for('static', filename='main.css') }}"> +</head> +<body> +<div id="content" class="content"> + {% block body %} + No content found. THIS IS AN ERROR + {% endblock %} +</div> +</body> +</html>
\ No newline at end of file |