diff options
author | Blaise Thompson <blaise@untzag.com> | 2019-11-09 19:41:30 -0600 |
---|---|---|
committer | Blaise Thompson <blaise@untzag.com> | 2019-11-09 19:41:30 -0600 |
commit | 735f16fe70f6f1d182d42d1f5161fe2aebe6aa6d (patch) | |
tree | ca1ee47f01fa0e56cb470d628e8b7cdcfe1df5fc /app/templates/layout.html |
initial commit
Diffstat (limited to 'app/templates/layout.html')
-rw-r--r-- | app/templates/layout.html | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/app/templates/layout.html b/app/templates/layout.html new file mode 100644 index 0000000..e63f746 --- /dev/null +++ b/app/templates/layout.html @@ -0,0 +1,15 @@ +<!DOCTYPE html> +<html> +<head> +<meta name="viewport" content="width=device-width, initial-scale=1"> +<link rel="stylesheet" href="{{ url_for('static', filename='css/main.css') }}"> +</head> +<body> + +<div class="container"> + {% block content %} + {% endblock %} +</div> + +</body> +</html> |