aboutsummaryrefslogtreecommitdiff
path: root/templates/base.html
diff options
context:
space:
mode:
authorSean Dolan <sed9182@rit.edu>2019-07-27 22:03:03 -0400
committerSean Dolan <sed9182@rit.edu>2019-07-27 22:03:03 -0400
commita5a4efe60cb0878150ef5e5d19cd578ade757e60 (patch)
tree618e7bac955a04613649c9504f14439a8ba99e10 /templates/base.html
parentb32f17ec362e277ace95e461687e9e75e7300372 (diff)
moar css moar problems
Diffstat (limited to 'templates/base.html')
-rw-r--r--templates/base.html22
1 files changed, 22 insertions, 0 deletions
diff --git a/templates/base.html b/templates/base.html
new file mode 100644
index 0000000..9b8432b
--- /dev/null
+++ b/templates/base.html
@@ -0,0 +1,22 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+ {% block head %}
+ <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
+ <link rel="stylesheet" href="{{ url_for('static', filename='ihatecss.css') }}">
+ <link rel="shortcut icon" href="{{ url_for('static', filename='favicon.ico')}}" type="image/x-icon">
+ <link rel="icon" href="{{ url_for('static', filename='favicon.ico')}}" type="image/x-icon">
+ <title>{% block title %}{% endblock %} Similar Beers</title>
+ {% endblock %}
+</head>
+<body>
+ <div id="content">{% block content %}{% endblock %}</div>
+ <div id="footer">
+ {% block footer %}
+ <p >
+ Please Drink responsibly... or don't I'm a website not a cop.
+ </p>
+ {% endblock %}
+ </div>
+</body>
+</html> \ No newline at end of file