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

Rework the footer with link lists #606

Merged
merged 4 commits into from
Jan 11, 2022
Merged
Show file tree
Hide file tree
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
84 changes: 72 additions & 12 deletions _layouts/default.html
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,27 @@
url: /security
- title: About
url: /about
projects:
- title: Binder
url: /binder
- title: JupyterHub
url: /hub
- title: JupyterLab
url: https://jupyterlab.readthedocs.io/
newpage: true
- title: Jupyter Notebook
url: https://jupyter-notebook.readthedocs.io/
newpage: true
- title: Voilà
url: https://voila.readthedocs.io/
newpage: true
- title: Widgets
url: /widgets
social:
- title: GitHub
url: https://github.com/jupyter/
- title: Twitter
url: https://twitter.com/projectjupyter
---
<!DOCTYPE html>
<html lang="en">
Expand Down Expand Up @@ -83,20 +104,59 @@
<section>
{{ content }}
</section>
<footer>
<div class="footer" role="navigation">
<div class="container">
<div class="navbar-text">
<p>
Copyright © {{site.time | date: '%Y' }} Project Jupyter
</p>
<p>
The Jupyter Trademark is registered with the U.S. Patent & Trademark Office.
</p>
</div>
<footer class="footer">
<section class="linklists">
<div class="content content--wide">
<div class="footer-links">
<h2>Project Jupyter</h2>
<ul>
{%- for obj in layout.nav -%}
<li>
<a href="{{ obj.url }}"
{%- if obj.newpage %} target="_blank" rel="noopener noreferrer" {% endif %}>
{{ obj.title }}
</a>
</li>
{%- endfor %}
</ul>
</div>
<div class="footer-links">
<h2>Subprojects</h2>
<ul>
{%- for obj in layout.projects -%}
<li>
<a href="{{ obj.url }}"
{%- if obj.newpage %} target="_blank" rel="noopener noreferrer" {% endif %}>
{{ obj.title }}
</a>
</li>
{%- endfor %}
</ul>
</div>
<div class="footer-links">
<h2>Follow us</h2>
<ul>
{%- for obj in layout.social -%}
<li>
<a href="{{ obj.url }}"
target="_blank" rel="noopener noreferrer">
{{ obj.title }}
</a>
</li>
{%- endfor %}
</ul>
</div>
</div>
</section>
<section class="footer-text">
<div class="content content--wide">
<img src="/assets/logos/rectanglelogo-blacktext-blackbody-blackplanets.svg" width="189" height="51" alt="project jupyter logo">
<p>
The Jupyter Trademark is registered with the U.S. Patent & Trademark Office. © {{site.time | date: '%Y' }}
</p>
</div>
</section>
</footer>
<script src="/assets/js/bootstrap-native.min.js" defer></script>
</body>
</html>
</html>
56 changes: 51 additions & 5 deletions _sass/components/_footer.scss
Original file line number Diff line number Diff line change
@@ -1,13 +1,59 @@
@import "settings/colors";

.footer {
section {
padding: 2em;
}
.linklists {
background-color: lighten($orange, 12.5%);
.content {
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: space-between;
align-items: start;
@media (max-width: 767px) {
flex-direction: column;
}
}
.footer-links {
color: $black;
@media (max-width: 420px) {
margin-top: 2em;
&:first-of-type {
margin-top: 0;
}
}
h2 {
font-size: 1.1em;
font-weight: bold;
margin: 0 0 1em 0;
padding: 0;
}
ul {
margin: 0 0 0 0;
padding: 0;
list-style-type: none;
li {
padding: 0;
margin: 0 0 0.75em 0;
a {
color: $black;
}
}
}
}
}
.footer-text {
background-color: $orange;
padding: 15px;
@media (max-width:767px) {
padding: 15px 0;
img {
margin: 1em 0;
color: $black;
}
p {
color: $black;
padding-top: 10px;
color: $black;
padding-top: 10px;
font-size: 0.9em;
}
}
}
88 changes: 88 additions & 0 deletions assets/logos/rectanglelogo-blacktext-blackbody-blackplanets.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.