Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

style: Differentiate footer in base template #268

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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>
Loading