Skip to content

DOC: Simplify pandas theme footer by removing social buttons and stre… #61202

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

Closed
Closed
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
31 changes: 2 additions & 29 deletions web/pandas/_templates/layout.html
Original file line number Diff line number Diff line change
Expand Up @@ -61,35 +61,8 @@
</div>
</main>
<footer class="container pt-4 pt-md-5 border-top">
<ul class="list-inline social-buttons float-end">
<li class="list-inline-item">
<a href="https://t.me/s/pandas_dev">
<i class="fab bi bi-telegram"></i>
</a>
</li>
<li class="list-inline-item">
<a href="https://fosstodon.org/@pandas_dev" rel="me">
<i class="fab bi bi-mastodon"></i>
</a>
</li>
<li class="list-inline-item">
<a href="https://x.com/pandas_dev">
<i class="fab bi bi-twitter-x"></i>
</a>
</li>
<li class="list-inline-item">
<a href="https://github.com/pandas-dev/pandas">
<i class="fab bi bi-github"></i>
</a>
</li>
<li class="list-inline-item">
<a href="https://stackoverflow.com/questions/tagged/pandas">
<i class="fab bi bi-stack-overflow"></i>
</a>
</li>
</ul>
<p>
&copy; {{ current_year }} pandas via <a href="https://numfocus.org">NumFOCUS, Inc.</a> Hosted by <a href="https://www.ovhcloud.com">OVHcloud</a>.
<p class="text-center">
&copy; {{ current_year }} pandas via <a href="https://numfocus.org">NumFOCUS</a>
</p>
</footer>

Expand Down
18 changes: 18 additions & 0 deletions web/pandas/static/css/pandas.css
Original file line number Diff line number Diff line change
Expand Up @@ -103,3 +103,21 @@ blockquote {
color: #787878;
font-size: 18px;
}
footer {
margin-top: 2rem;
padding-bottom: 1rem;
}

footer p {
color: #666;
font-size: 0.9rem;
}

footer a {
color: #130654;
text-decoration: none;
}

footer a:hover {
text-decoration: underline;
}