-
Notifications
You must be signed in to change notification settings - Fork 38
/
development-fr.php
56 lines (48 loc) · 1.63 KB
/
development-fr.php
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
<?php
$breadcrumbs = array
(
'Développement' => 'development-fr.php'
);
include('header-fr.php');
?>
<div class="development">
<h1>Développement</h1>
<div class="link-box two-columns-left">
<a class="repository" href="https://github.com/SFML/SFML">
<div class="title">Dépôt</div>
<div class="description">Parcourez-le @ github.com</div>
</a>
</div>
<div class="link-box two-columns-right">
<a class="issues" href="issues-fr.php">
<div class="title">Problèmes</div>
<div class="description">Que faire en cas de problème</div>
</a>
</div>
<div class="link-box two-columns-left">
<a class="changelog" href="changelog-fr.php">
<div class="title">Changelog <img src="../images/icons/flag-en.png" alt="EN"></div>
<div class="description">Quoi de neuf?</div>
</a>
</div>
<div class="link-box two-columns-right">
<a class="contribute" href="contribute-fr.php">
<div class="title">Guide du contributeur <img src="../images/icons/flag-en.png" alt="EN"></div>
<div class="description">Comment aider à développer SFML</div>
</a>
</div>
<div class="link-box two-columns-left">
<a class="style" href="style-fr.php">
<div class="title">Guide du codeur <img src="../images/icons/flag-en.png" alt="EN"></div>
<div class="description">Comment structurer vos contributions</div>
</a>
</div>
<div class="link-box two-columns-right">
<a class="workflow" href="workflow-fr.php">
<div class="title">Méthodologie Git <img src="../images/icons/flag-en.png" alt="EN"></div>
<div class="description">Comment nous utilisons Git</div>
</a>
</div>
<?php
require("footer-fr.php");
?>