Files
datafusion/docs/source/_templates/layout.html
T
Dhanush 41566dbbfa feat(docs): enable navbar (#18324)
## Which issue does this PR close?

- Closes #18284.

## What changes are included in this PR?

I've enabled the navbar, which is required to use dark-light mode toggle
and made following changes in the ui

- Removed the existing logo in the side-bar (as it was redundant)
- Removed search bar in the side-bar (as it was conflicting with
navbar's search widget)

<img width="1280" height="939" alt="image"
src="https://github.com/user-attachments/assets/52bebca7-34a6-4a3b-bb30-8aa2ca6e2c8f"
/><br>
<img width="1280" height="939" alt="image"
src="https://github.com/user-attachments/assets/69ce9922-ef78-4b2c-bf6e-36860d170635"
/>
2025-10-31 02:14:57 +00:00

23 lines
662 B
HTML

{% extends "pydata_sphinx_theme/layout.html" %}
<!--
Custom footer
-->
{% block footer %}
<!-- Based on pydata_sphinx_theme/footer.html -->
<footer class="footer mt-5 mt-md-0">
<div class="container">
{% for footer_item in theme_footer_items %}
<div class="footer-item">
{% include footer_item %}
</div>
{% endfor %}
<div class="footer-item">
<p>Apache DataFusion, Apache, the Apache feather logo, and the Apache DataFusion project logo</p>
<p>are either registered trademarks or trademarks of The Apache Software Foundation in the United States and other countries.</p>
</div>
</div>
</footer>
{% endblock %}