Mercurial > sat_legacy_website
view templates/sat_website/base.html @ 43:c86737a3af94
update French language files
author | souliane <souliane@mailoo.org> |
---|---|
date | Tue, 03 Feb 2015 15:17:07 +0100 |
parents | 73c6333fd124 |
children | 62c23067e86e |
line wrap: on
line source
{% comment %} SàT website: Salut à Toi's presentation website Copyright (C) 2012 Jérôme Poisson (goffi@goffi.org) This file is part of SàT website. SàT website is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. Foobar is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details. You should have received a copy of the GNU Affero General Public License along with Foobar. If not, see <http://www.gnu.org/licenses/>. {% endcomment %} {% load staticfiles %} {% load i18n %} {% get_current_language as LANGUAGE_CODE %} <!DOCTYPE html> <html lang="{{ LANGUAGE_CODE }}"> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="stylesheet" href="{% static "bootstrap/css/bootstrap.min.css" %}"> <link rel="stylesheet" href="{% static "bootstrap/css/bootstrap-theme.min.css" %}"> <link rel="stylesheet" href="{% static "css/sat_website.css" %}"> <link rel="icon" type="image/png" href="{% static "images/sat_logo_32.png" %}"> <title>{% block title %}{% trans "Salut à Toi: the multi-frontends, multi-purposes communication tool" %}{% endblock %}</title> </head> <body role="document"> <nav class="navbar navbar-inverse navbar-fixed-top"> <div class="container"> <div class="navbar-header" id="navbar-header"> <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar"> <span class="sr-only">Toggle navigation</span> <span class="icon-bar"></span> <span class="icon-bar"></span> <span class="icon-bar"></span> </button> <img id="sat_logo" src="{% static "images/sat_logo_32.png" %}"> <a class="navbar-brand" href="overview.html"> Salut à Toi </a> </div> <div id="navbar" class="collapse navbar-collapse"> {% include "sat_website/menu.html" with style="nav navbar-nav" categories=categories %} {% include "sat_website/menu.html" with style="nav navbar-nav pull-right" categories=categories_right language_select=True %} </div> </div> </nav> {% block content %}{% endblock %} <script src="{% static "js/jquery.min.js" %}"></script> <script src="{% static "bootstrap/js/bootstrap.min.js" %}"></script> <script src="{% static "js/sat_website.js" %}"></script> </body> </html>