Skip to content

Commit 661bf05

Browse files
committed
DOC: Simplify pandas theme footer by removing social buttons and streamlining copyright text
1 parent b69a2ae commit 661bf05

File tree

2 files changed

+20
-29
lines changed

2 files changed

+20
-29
lines changed

Diff for: web/pandas/_templates/layout.html

+2-29
Original file line numberDiff line numberDiff line change
@@ -61,35 +61,8 @@
6161
</div>
6262
</main>
6363
<footer class="container pt-4 pt-md-5 border-top">
64-
<ul class="list-inline social-buttons float-end">
65-
<li class="list-inline-item">
66-
<a href="https://t.me/s/pandas_dev">
67-
<i class="fab bi bi-telegram"></i>
68-
</a>
69-
</li>
70-
<li class="list-inline-item">
71-
<a href="https://fosstodon.org/@pandas_dev" rel="me">
72-
<i class="fab bi bi-mastodon"></i>
73-
</a>
74-
</li>
75-
<li class="list-inline-item">
76-
<a href="https://x.com/pandas_dev">
77-
<i class="fab bi bi-twitter-x"></i>
78-
</a>
79-
</li>
80-
<li class="list-inline-item">
81-
<a href="https://github.com/pandas-dev/pandas">
82-
<i class="fab bi bi-github"></i>
83-
</a>
84-
</li>
85-
<li class="list-inline-item">
86-
<a href="https://stackoverflow.com/questions/tagged/pandas">
87-
<i class="fab bi bi-stack-overflow"></i>
88-
</a>
89-
</li>
90-
</ul>
91-
<p>
92-
&copy; {{ current_year }} pandas via <a href="https://numfocus.org">NumFOCUS, Inc.</a> Hosted by <a href="https://www.ovhcloud.com">OVHcloud</a>.
64+
<p class="text-center">
65+
&copy; {{ current_year }} pandas via <a href="https://numfocus.org">NumFOCUS</a>
9366
</p>
9467
</footer>
9568

Diff for: web/pandas/static/css/pandas.css

+18
Original file line numberDiff line numberDiff line change
@@ -103,3 +103,21 @@ blockquote {
103103
color: #787878;
104104
font-size: 18px;
105105
}
106+
footer {
107+
margin-top: 2rem;
108+
padding-bottom: 1rem;
109+
}
110+
111+
footer p {
112+
color: #666;
113+
font-size: 0.9rem;
114+
}
115+
116+
footer a {
117+
color: #130654;
118+
text-decoration: none;
119+
}
120+
121+
footer a:hover {
122+
text-decoration: underline;
123+
}

0 commit comments

Comments
 (0)