Skip to content
Closed
Show file tree
Hide file tree
Changes from 3 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
5 changes: 5 additions & 0 deletions doc/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -268,6 +268,8 @@
"icon": "fa-brands fa-mastodon",
},
],
"use_edit_page_button": True,
"edit_page_url_template": "https://github.com/pandas-dev/pandas/edit/main/doc/source/{filepath}",
}

# Add any paths that contain custom themes here, relative to this directory.
Expand Down Expand Up @@ -391,6 +393,9 @@
html_context = {
"redirects": dict(moved_api_pages),
"header": header,
"github_user": "pandas-dev",
"github_repo": "pandas",
"github_version": "main",
}

# If false, no module index is generated.
Expand Down
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;
}
Loading