diff --git a/AUTHORS b/AUTHORS index 19ee3a57..80df4495 100644 --- a/AUTHORS +++ b/AUTHORS @@ -8,6 +8,9 @@ The alchemlyb project is led by Oliver Beckstein (@orbeckst), David Mobley (@davidlmobley), and Michal Shirts (@mrshirts). alchemlyb was originally created by David Dotson (@dotsdl). +The project is being maintained by Zhiyi Wu (@xiki-tempula) and Oliver +Beckstein (@orbeckst). + All contributing authors are listed in this file below. Full name and GitHub handle are preferred. The repository history at https://github.com/alchemistry/alchemlyb and the CHANGES file show @@ -47,5 +50,6 @@ Chronological list of authors - Irfan Alibay (@IAlibay) - Pascal Merz (@ptmerz) - Domenico Marson (@DrDomenicoMarson) + 2023 - Haoxi Li (@hl2500) diff --git a/docs/.templates/footer.html b/docs/.templates/footer.html new file mode 100644 index 00000000..8503b5ea --- /dev/null +++ b/docs/.templates/footer.html @@ -0,0 +1,32 @@ +{% extends "!footer.html" %} +{% block contentinfo %} +
+ {%- if show_copyright %}
+ {%- if hasdoc('copyright') %}
+ {%- trans path=pathto('copyright'), copyright=copyright %}© Copyright {{ copyright }}.{% endtrans %}
+ {%- else %}
+ {%- trans copyright=copyright %}© Copyright {{ copyright }}.{% endtrans %}
+ {%- endif %}
+ {%- endif %}
+
+ {%- if build_id and build_url %}
+
+ {#- Translators: Build is a noun, not a verb -#}
+ {%- trans %}Build{% endtrans -%}
+ {{ build_id }}.
+
+ {%- elif commit %}
+
+ {#- Translators: the phrase "revision" comes from Git, referring to a commit #}
+ {%- trans %}Revision{% endtrans %} {{ commit }}
.
+
+ {%- endif %}
+ {%- if last_updated %}
+
+ {%- trans last_updated=last_updated|e %}Last updated on {{ last_updated }}.{% endtrans %}
+
+ {%- endif -%}
+
+