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

Add theme info to footer #15

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
1 change: 1 addition & 0 deletions _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,3 +80,4 @@ sphinx:
footer_start:
- footer-logos
- footer-info
- footer-extra
Binary file added _static/footer-logo-nsf.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
27 changes: 27 additions & 0 deletions _templates/footer-extra.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
<div class="container-fluid footer-extra">
<div class="container">
<center>
Theme by <a href="https://projectpythia.org">Project Pythia</a>. All code
in Pythia Cookbooks is licensed under
<a href="https://opensource.org/license/apache-2-0">Apache 2.0</a>. All
other non-code content is licensed under
<a href="https://creativecommons.org/licenses/by/4.0/">
Creative Commons BY 4.0 (CC BY 4.0)</a
>.
</center>
<br /><br />
<div class="row">
<p class="m-0">
<img
src="{{ pathto('_static/footer-logo-nsf.png', 1) }}"
style="float: left; width: 60px; height: 60px; margin-right: 1rem"
/>
This material is based upon work supported by the National Science
Foundation under Grant Nos. 2026863 and 2026899. Any opinions, findings,
and conclusions or recommendations expressed in this material are those
of the author(s) and do not necessarily reflect the views of the
National Science Foundation.
</p>
</div>
</div>
</div>
Loading