Skip to content

Commit 9754641

Browse files
authored
Merge pull request #59 from QuLogic/copyright
Fix display of copyright in footer
2 parents 3ccdc57 + 9503e09 commit 9754641

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docs/_templates/landing_footer.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ <h1>Matplotlib</h1>
3333
class="button button--green"
3434
>Donate to Matplotlib</a>
3535

36-
<p class="copywrite">©2021 The Matplotlib Development team</p>
36+
<p class="copywrite">{{ copyright }}</p>
3737
</div>
3838

3939
<ul class="mpl-links grid__mpl-links">

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
html_title = 'Visualization with Python'
66
project = "Matplotlib landing page"
77
copyright = (
8-
f"2012 - {datetime.datetime.now().year} The Matplotlib development team"
8+
f"© 2012 {datetime.datetime.now().year} The Matplotlib development team"
99
)
1010
author = "Matplotlib Developers"
1111

0 commit comments

Comments
 (0)