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

WEB: standardized footer GH48012 #48202

Closed
wants to merge 6 commits into from
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion doc/source/conf.py
Expand Up @@ -163,7 +163,7 @@

# General information about the project.
project = "pandas"
copyright = f"2008-{datetime.now().year}, the pandas development team"
copyright = f"{datetime.now().year} pandas via NumFOCUS, Inc."

# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
Expand Down
7 changes: 6 additions & 1 deletion web/pandas/_templates/layout.html
Expand Up @@ -91,7 +91,7 @@
</li>
</ul>
<p>
pandas is a fiscally sponsored project of <a href="https://numfocus.org">NumFOCUS.</a>
© <span id="footer_text"></span> pandas via <a href="https://numfocus.org">NumFOCUS, Inc.</a>
</p>
</footer>

Expand All @@ -111,5 +111,10 @@

matcher.addEventListener('change', onUpdate);
</script>
<script>
date = new Date();
year = date.getFullYear();
document.getElementById("footer_text").innerHTML = year;
</script>
</body>
</html>