Skip to content
Snippets Groups Projects
Commit fc529962 authored by Ziwei Wang's avatar Ziwei Wang
Browse files

Various changes

1. Remove the block for languages selections on index page
2. Make copyright year in the footer dynamic
3. Add favicon

Change-Id: If62308d1544670ebe4d6baedfb75ebb2ddeb3157
parent 2f1cd5d8
Branches
No related tags found
No related merge requests found
_static/favicon-128x128.png

10.7 KiB

_static/favicon-16x16.png

720 B

_static/favicon-196x196.png

24 KiB

_static/favicon-32x32.png

1.7 KiB

_static/favicon-96x96.png

7.18 KiB

...@@ -49,6 +49,11 @@ ...@@ -49,6 +49,11 @@
{%- if favicon_url or favicon %} {%- if favicon_url or favicon %}
<link rel="shortcut icon" href="{{ _favicon_url }}"/> <link rel="shortcut icon" href="{{ _favicon_url }}"/>
{%- endif %} {%- endif %}
<link rel="shortcut icon" type="image/png" href="_static/favicon-16x16.png" sizes="16x16"/>
<link rel="shortcut icon" type="image/png" href="_static/favicon-32x32.png" sizes="32x32"/>
<link rel="shortcut icon" type="image/png" href="_static/favicon-96x96.png" sizes="96x96"/>
<link rel="shortcut icon" type="image/png" href="_static/favicon-128x128.png" sizes="128x128"/>
<link rel="shortcut icon" type="image/png" href="_static/favicon-196x196.png" sizes="196x196"/>
{#- CANONICAL URL (deprecated) #} {#- CANONICAL URL (deprecated) #}
{%- if theme_canonical_url and not pageurl %} {%- if theme_canonical_url and not pageurl %}
......
...@@ -9,9 +9,12 @@ ...@@ -9,9 +9,12 @@
# https://www.sphinx-doc.org/en/master/usage/configuration.html # https://www.sphinx-doc.org/en/master/usage/configuration.html
import sphinx_rtd_theme import sphinx_rtd_theme
from datetime import datetime
current_year = datetime.now().year
project = 'Jami' project = 'Jami'
copyright = '2018-2022 Savoir-faire Linux Inc. and contributors' copyright = f'2018-{current_year} Savoir-faire Linux Inc. and contributors'
author = 'Savoir-faire Linux Inc. and contributors' author = 'Savoir-faire Linux Inc. and contributors'
html_baseurl = 'https://docs.jami.net' html_baseurl = 'https://docs.jami.net'
......
...@@ -10,11 +10,6 @@ respects the freedom and privacy of its users. Jami is available ...@@ -10,11 +10,6 @@ respects the freedom and privacy of its users. Jami is available
across operating systems and platforms including GNU/Linux, macOS, across operating systems and platforms including GNU/Linux, macOS,
Windows, Android/Replicant, and iOS. Windows, Android/Replicant, and iOS.
.. admonition:: Translations
This documentation is available in `English </>`_,
`French </fr/>`_, and `Persian (Farsi) </fa/>`_.
Jami is an official GNU package and you can redistribute it and/or Jami is an official GNU package and you can redistribute it and/or
modify it under the terms of the `GNU General Public License modify it under the terms of the `GNU General Public License
<https://www.gnu.org/licenses/gpl.html>`_ as published by the Free <https://www.gnu.org/licenses/gpl.html>`_ as published by the Free
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment