Get rid of footer.

Need to figure out how to stop it overlapping content on mobile.
This commit is contained in:
Chris Giacofei 2024-06-06 11:15:36 -04:00
parent ff717d917d
commit e40d83e7a2

View File

@ -1,6 +1,7 @@
<html lang="en"> <html lang="en">
<head> <head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>{% block title %}{% endblock %}</title> <title>{% block title %}{% endblock %}</title>
<!-- CSS only --> <!-- CSS only -->
@ -30,7 +31,7 @@
</head> </head>
<body> <body>
<div class="container"> <div class="container">
<nav class="navbar navbar-expand-md navbar-dark fixed-top bg-dark"> <nav class="navbar navbar-expand-lg navbar-dark fixed-top bg-dark">
<a class="navbar-brand" href="/">Damn Yankee Brewing</a> <a class="navbar-brand" href="/">Damn Yankee Brewing</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarsExampleDefault" <button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarsExampleDefault"
aria-controls="navbarsExampleDefault" aria-expanded="false" aria-label="Toggle navigation"> aria-controls="navbarsExampleDefault" aria-expanded="false" aria-label="Toggle navigation">
@ -107,13 +108,13 @@
{% block content %}{% endblock %} {% block content %}{% endblock %}
</main> </main>
<footer class="bg-body-tertiary text-center fixed-bottom"> <!-- <footer class="bg-body-tertiary text-center fixed-bottom">
<!-- Copyright --> <!-- Copyright -->
<div class="text-center p-1" style="background-color: rgba(0, 0, 0, 0.1);"> <div class="text-center p-1" style="background-color: rgba(0, 0, 0, 0.1);">
&copy; Damn Yankee Brewing 2010-{% now "Y" %} &copy; Damn Yankee Brewing 2010-{% now "Y" %}
</div> </div>
<!-- Copyright --> <!-- Copyright -->
</footer> </footer>-->
</body> </body>
{% block endscript %}{% endblock %} {% block endscript %}{% endblock %}
</html> </html>