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