diff --git a/static/favicon.png b/static/favicon.png new file mode 100644 index 0000000000000000000000000000000000000000..64a7dcf1a47567918987940f376b269555a71a81 Binary files /dev/null and b/static/favicon.png differ diff --git a/templates/base.html b/templates/base.html index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..c7180c4fd651833799e894da35842ef0574733a9 100644 --- a/templates/base.html +++ b/templates/base.html @@ -0,0 +1,18 @@ +<!DOCTYPE html> +<html> + <head> + <title>{{ site_title }}</title> + <script src="static/jquery.js"></script> + <link rel="stylesheet" type="text/css" href="style.css"> + <link rel="icon" type="image/png" href="/favicon.png"> + <meta http-equiv="content-language" content="de-DE"> + <meta http-equiv="Content-Type" content="text/html;charset=UTF-8"> + <meta charset="UTF-8"> + </head> + <body> + + <h1>This is a Heading</h1> + <p>This is a paragraph.</p> + + </body> +</html> diff --git a/templates/index.html b/templates/index.html new file mode 100644 index 0000000000000000000000000000000000000000..94d9808cc760156cb7ab46e326c0267f3406125e --- /dev/null +++ b/templates/index.html @@ -0,0 +1 @@ +{% extends "base.html" %}