Skip to content

Commit

Permalink
[#12] Ajout de nouveau marqueurs de traductions
Browse files Browse the repository at this point in the history
  • Loading branch information
Mathieu Leduc-Hamel committed Oct 8, 2014
1 parent c674cdd commit 5e0cd58
Showing 1 changed file with 35 additions and 13 deletions.
48 changes: 35 additions & 13 deletions agenda/templates/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,17 +6,26 @@

<head>
{% block title %}
<title>L'Agenda du libre du Québec</title>
<title>{% trans "L'Agenda du libre du Québec" %}</title>
{% endblock title %}
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<meta name="google-site-verification" content="rz4d48R0H-Yiap5gO405faHZiTN-MiLNkkmlbhjsNSY" />
<link rel="stylesheet" type="text/css" href="/media/moderne.css" title="Moderne" />
<link rel="shortcut icon" type="image/x-icon" href="/media/img/favicon.png" />
{% block feeds %}
{% endblock feeds %}
<link rel="alternate" href="/event/feeds/latest/" title="Agenda du libre du Québec, nouveaux évènements" type="application/rss+xml" />
<link rel="alternate" href="/event/feeds/upcoming/" title="Agenda du libre du Québec, prochains évènements" type="application/rss+xml" />
<link rel="alternate" href="/event/calendar/" title="Agenda du libre du Québec, calendrier numérique" type="text/calendar" />
<link rel="alternate"
href="/event/feeds/latest/"
title="{% trans "Agenda du libre du Québec, nouveaux évènements" %}"
type="application/rss+xml" />
<link rel="alternate"
href="/event/feeds/upcoming/"
title="{% trans "Agenda du libre du Québec, prochains évènements" %}"
type="application/rss+xml" />
<link rel="alternate"
href="/event/calendar/"
title="{% trans "Agenda du libre du Québec, calendrier numérique" %}"
type="text/calendar" />
</head>

<body>
Expand All @@ -39,23 +48,36 @@
</form>
</div>
</div>
<h1><a href="/">L'Agenda du libre du Québec</a></h1>
<p id="subtitle">Tous les événements du Québec à propos de l'informatique libre</p>
<h1>
<a href="/">{% trans "L'Agenda du libre du Québec" %}</a>
</h1>
<p id="subtitle">{% trans "Tous les événements du Québec à propos de l'informatique libre" %}</p>
</div>
<div class="main">
{% block content %}
{% endblock content %}
</div>
<div class="footer">
<p>
<a href="{% url 'index' %}">Agenda</a> -
<a href="{% url 'about' %}">À propos</a> -
<a href="{% url 'propose' %}">Proposer un événement</a> -
<a href="{% url 'feed_list' %}">Fils RSS et iCal</a> -
<a href="{% url 'stats' %}">Statistiques</a> -
<a href="mailto:[email protected]">Contact</a>
<a href="{% url 'index' %}">
{% trans "Agenda" %}
</a> -
<a href="{% url 'about' %}">
{% trans "À propos" %}
</a> -
<a href="{% url 'propose' %}">
{% trans "Proposer un événement" %}
</a> -
<a href="{% url 'feed_list' %}">
{% trans "Fils RSS et iCal" %}
</a> -
<a href="{% url 'stats' %}">
{% trans "Statistiques" %}
</a> -
<a href="mailto:[email protected]">
{% trans "Contact" %}
</a>
</p>

<br />
</div>
{% block before_end_body %}{% endblock %}
Expand Down

0 comments on commit 5e0cd58

Please sign in to comment.