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

Static landing page and footer links #19

Merged
merged 4 commits into from
Feb 20, 2024
Merged
Show file tree
Hide file tree
Changes from 3 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
10 changes: 10 additions & 0 deletions fortran/_templates/footer.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{%- extends '!footer.html' %}

{% block extrafooter %}
<p>
<a href="https://www.ecmwf.int/en/accessibility" title="Accessibility">Accessibility</a> -
<a href="https://www.ecmwf.int/en/privacy" title="Privacy">Privacy</a> -
<a href="https://www.ecmwf.int/en/terms-use" title="Terms of use">Terms of use</a> -
<a href="https://www.ecmwf.int/en/about/contact-us" title="Contact us">Contact us</a>
</p>
{% endblock %}
5 changes: 3 additions & 2 deletions fortran/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
# -- Project information -----------------------------------------------------

project = 'IFS Fortran standard'
copyright = '2024-, ECMWF, Meteo-France'
copyright = '2024-, ECMWF, Météo-France'
author = 'ECMWF'

# The short X.Y version
Expand Down Expand Up @@ -88,7 +88,8 @@
# Add any paths that contain custom static files (such as style sheets) here,
# relative to this directory. They are copied after the builtin static files,
# so a file named "default.css" will overwrite the builtin "default.css".
html_static_path = ['_static']
# html_static_path = ['_static']
html_static_path = []

# Custom sidebar templates, must be a dictionary that maps document names
# to template names.
Expand Down
Loading