Skip to content

Commit

Permalink
Differentiate footer in base template
Browse files Browse the repository at this point in the history
  • Loading branch information
cassidoo authored Nov 20, 2023
1 parent 188f37d commit 8b5b799
Showing 1 changed file with 17 additions and 17 deletions.
34 changes: 17 additions & 17 deletions agagd/jinja2/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -61,12 +61,13 @@ <h6 class="header-subtext">
<main class="main-content">
{% block content %}{% endblock content %}
</main>
</section>

<footer class="footer">
<nav class="footer-nav">
{% block footer_nav %}
<section class="container footer-nav-sections">
<section class="row">
<footer class="footer bg-light p-3">
<nav class="footer-nav">
{% block footer_nav %}
<section class="container footer-nav-sections">
<section class="row">
<div class="col-12 col-md-3">
<h5>Ratings</h5>
<ul class="list-unstyled">
Expand Down Expand Up @@ -102,21 +103,20 @@ <h5>Chapters</h5>
<h5>Social</h5>
<ul class="list-unstyled">
<li>
<a href="https://github.com/usgo/agagd">Github</a>
<a href="https://github.com/usgo/agagd">GitHub</a>
</li>
</ul>
</div>
</section>
</section>
{% endblock footer_nav %}
</nav>
</section>
</section>
{% endblock footer_nav %}
</nav>

<section class="footer-copy">
{% block footer_copy %}
<div class="footer-copyright text-center">&copy; 2020 <a href="https://www.usgo.org">American Go Association</a></div>
{% endblock footer_copy %}
</section>
</footer>
</section>
<section class="footer-copy">
{% block footer_copy %}
<div class="footer-copyright text-center">&copy; 2023 <a href="https://www.usgo.org">American Go Association</a></div>
{% endblock footer_copy %}
</section>
</footer>
</body>
</html>

0 comments on commit 8b5b799

Please sign in to comment.