diff options
author | n-peugnet <n.peugnet@free.fr> | 2022-04-01 16:48:53 +0200 |
---|---|---|
committer | Nicolas Peugnet <n.peugnet@free.fr> | 2022-04-01 17:52:21 +0200 |
commit | 194a55a0acf289957c2f34102823c205cc94ea7c (patch) | |
tree | 8c665364703c654e5a47c4ba7c7715da644946a8 /_templates | |
parent | b54977894e97e872caf96d095dfdc0abe71e0d18 (diff) | |
download | club1-docs-194a55a0acf289957c2f34102823c205cc94ea7c.tar.gz club1-docs-194a55a0acf289957c2f34102823c205cc94ea7c.zip |
feat: add link in sidebar to return to main site
Diffstat (limited to '_templates')
-rw-r--r-- | _templates/layout.html | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/_templates/layout.html b/_templates/layout.html new file mode 100644 index 0000000..7e255dc --- /dev/null +++ b/_templates/layout.html @@ -0,0 +1,6 @@ +{% extends "!layout.html" %} + +{% block sidebartitle %} + <a href="https://club1.fr" class="fa fa-arrow-left" > {{ _("Retour au site principal") }} </a></br> + {{ super() }} +{% endblock %} |