Skip to content
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
2 changes: 1 addition & 1 deletion doc/source/conf.py
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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>