diff options
author | Tomasz Kramkowski <tk@the-tk.com> | 2017-04-12 11:44:39 +0200 |
---|---|---|
committer | Tomasz Kramkowski <tk@the-tk.com> | 2017-04-12 11:44:39 +0200 |
commit | c2b8235b0e3506d0d36ac626c5df84edd7c58740 (patch) | |
tree | e251e4f1ec50494c41c8cbd7c922a18b33528719 /templates/layout.html | |
parent | 46494949fbd551e40a082421dc9e86be084a00d8 (diff) | |
download | dmarcpipe-c2b8235b0e3506d0d36ac626c5df84edd7c58740.tar.gz dmarcpipe-c2b8235b0e3506d0d36ac626c5df84edd7c58740.tar.xz dmarcpipe-c2b8235b0e3506d0d36ac626c5df84edd7c58740.zip |
dmarcstats
Diffstat (limited to 'templates/layout.html')
-rw-r--r-- | templates/layout.html | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/templates/layout.html b/templates/layout.html new file mode 100644 index 0000000..d7ca750 --- /dev/null +++ b/templates/layout.html @@ -0,0 +1,15 @@ +<!DOCTYPE html> +<html lang="en"> + <head> + {% block head %} + <!--<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}" />--> + <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous"> + <title>{% block title %}{% endblock %} - DMARC Statistics</title> + <meta name="viewport" content="width=device-width, initial-scale=1"> + {% endblock %} + </head> + <body> + <!--<main>% block content %}% endblock %}</main>--> + <div class="container">{% block content %}{% endblock %}</div> + </body> +</html> |