diff options
author | Ben Burwell <ben@benburwell.com> | 2019-07-28 12:36:47 -0400 |
---|---|---|
committer | Ben Burwell <ben@benburwell.com> | 2019-07-28 12:37:12 -0400 |
commit | ae0b5d946aa3c0d5c1510450d28eb7b987923e3e (patch) | |
tree | 4f18bfb8e1e458cd60b14b258348def085e8d8e9 /templates/base.html | |
parent | 4091a14f26dbc73dccab8a0111436521266c473c (diff) |
Redirect to random beer details
Diffstat (limited to 'templates/base.html')
-rw-r--r-- | templates/base.html | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/templates/base.html b/templates/base.html index a2fe85f..e688c41 100644 --- a/templates/base.html +++ b/templates/base.html @@ -19,7 +19,9 @@ {% endblock %} </head> <body> - <div id="content">{% block content %}{% endblock %}</div> + <div class="container"> + {% block content %}{% endblock %} + </div> <div id="footer"> {% block footer %} <p > @@ -28,4 +30,4 @@ {% endblock %} </div> </body> -</html>
\ No newline at end of file +</html> |