annotate templates/default/base/base.html @ 19:608cec27bfea

i18n: Translated using Weblate (French) Currently translated at 100.0% (148 of 148 strings) Translation: Libervia/Website Translate-URL: https://salut-a-toi.org/weblate/projects/libervia/website/fr/
author Goffi <tmp-weblate_goffi.org@goffi.org>
date Wed, 16 Jun 2021 18:17:17 +0000
parents dc880664a8ec
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
8
dc880664a8ec modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents: 0
diff changeset
1 {% set menu_fixed_top=true %}
dc880664a8ec modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents: 0
diff changeset
2 {% extends '(bulma)base/base.html' %}
dc880664a8ec modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents: 0
diff changeset
3 {% block main_menu %}
dc880664a8ec modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents: 0
diff changeset
4 {{ component.menu(main_menu, class="is-primary") }}
dc880664a8ec modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents: 0
diff changeset
5 {% endblock main_menu %}
dc880664a8ec modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents: 0
diff changeset
6
0
09d66acc7c73 initial commit, website first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
7 {% block footer %}
8
dc880664a8ec modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents: 0
diff changeset
8 <footer class="footer">
dc880664a8ec modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents: 0
diff changeset
9 <div class="content has-text-centered">
dc880664a8ec modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents: 0
diff changeset
10 {% trans app_name="Libervia" %}Powered by {{app_name}}{% endtrans %}
dc880664a8ec modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents: 0
diff changeset
11
dc880664a8ec modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents: 0
diff changeset
12 <address class="is-inline">
dc880664a8ec modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents: 0
diff changeset
13 <a href="mailto:contact@salut-a-toi.invalid">{% trans %}contact{% endtrans %}</a> ({% trans %}replace invalid by org{% endtrans %})
dc880664a8ec modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents: 0
diff changeset
14 </address>
dc880664a8ec modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents: 0
diff changeset
15 </div>
dc880664a8ec modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents: 0
diff changeset
16 </footer>
0
09d66acc7c73 initial commit, website first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
17 {% endblock %}