-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathglossaire.html
56 lines (49 loc) · 1.46 KB
/
glossaire.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
---
layout: page
permalink: /glossaire
title: Glossaire
---
<p>
Beaucoup de termes en rapport avec la mobilité électrique sont en anglais.
J'ai donc compilé ici une liste des définition pour les termes les plus courants ainsi que leur traduction française.
</p>
<table class="table">
<thead>
<tr>
<th>Anglais</th>
<th>Français</th>
<th>Définition</th>
</tr>
</thead>
{% for word in site.data.glossaire %}
<tr>
<td>
{% if word.en %}
{{ word.en }}
{% endif %}
{% if word.en_abbr %}
({{ word.en_abbr }})
{% endif %}
{% if word.en_wiki %}
<a href="https://en.wikipedia.org/wiki/{{ word.en_wiki }}" title="Sur Wikipedia (Anglais)" target="_blank" rel="nofollow"><i class="fa fa-wikipedia-w"></i></a>
{% endif %}
</td>
<td>
{% if word.fr %}
{{ word.fr }}
{% endif %}
{% if word.fr_abbr %}
({{ word.fr_abbr }})
{% endif %}
{% if word.fr_wiki %}
<a href="https://fr.wikipedia.org/wiki/{{ word.fr_wiki }}" title="Sur Wikipedia (Français)" target="_blank" rel="nofollow"><i class="fa fa-wikipedia-w"></i></a>
{% endif %}
</td>
<td>
{% if word.definition %}
{{ word.definition }}
{% endif %}
</td>
</tr>
{% endfor %}
</table>