summaryrefslogtreecommitdiffstats
path: root/templates/layout.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/layout.html')
-rw-r--r--templates/layout.html15
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>