Skip to content

Commit 0afea80

Browse files
committed
Add Apache attribution to site footer
1 parent 20f9ca6 commit 0afea80

File tree

2 files changed

+24
-3
lines changed

2 files changed

+24
-3
lines changed

docs/source/_templates/layout.html

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,24 @@
33
{# Silence the navbar #}
44
{% block docs_navbar %}
55
{% endblock %}
6+
7+
<!--
8+
Custom footer
9+
-->
10+
{% block footer %}
11+
<!-- Based on pydata_sphinx_theme/footer.html -->
12+
<footer class="footer mt-5 mt-md-0">
13+
<div class="container">
14+
{% for footer_item in theme_footer_items %}
15+
<div class="footer-item">
16+
{% include footer_item %}
17+
</div>
18+
{% endfor %}
19+
<div class="footer-item">
20+
<p>Apache Arrow DataFusion, Arrow DataFusion, Apache, the Apache feather logo, and the Apache Arrow DataFusion project logo</p>
21+
<p>are either registered trademarks or trademarks of The Apache Software Foundation in the United States and other countries.</p>
22+
</div>
23+
</div>
24+
</footer>
25+
26+
{% endblock %}

docs/source/conf.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,9 @@
3333

3434
# -- Project information -----------------------------------------------------
3535

36-
project = 'Arrow DataFusion'
37-
copyright = '2023, Apache Software Foundation'
38-
author = 'Arrow DataFusion Authors'
36+
project = 'Apache Arrow DataFusion'
37+
copyright = '2019-2024, Apache Software Foundation'
38+
author = 'Apache Software Foundation'
3939

4040

4141
# -- General configuration ---------------------------------------------------

0 commit comments

Comments
 (0)