|
115
|
1 |
--- |
|
|
2 |
layout: default |
|
|
3 |
--- |
|
|
4 |
|
|
|
5 |
{% include nav.html search=true %} |
|
|
6 |
|
|
|
7 |
<div class="container"> |
|
|
8 |
<div class="row justify-content-center"> |
|
|
9 |
<div class="col col-6"> |
|
|
10 |
|
|
|
11 |
<h2>Lorem ipsum</h2> |
|
|
12 |
|
|
|
13 |
<p class="lead">Nostrud esse amet deserunt exercitation proident in cupidatat ipsum reprehenderit adipisicing do ipsum aute. Dolor est elit voluptate voluptate velit cillum laborum eiusmod nisi.</p> |
|
|
14 |
|
|
|
15 |
<form> |
|
|
16 |
<div class="form-group"> |
|
|
17 |
<label for="formGroupExampleInput">Nom du groupe</label> |
|
|
18 |
<input type="text" class="form-control" id="formGroupExampleInput" placeholder="Example input"> |
|
|
19 |
</div> |
|
|
20 |
<div class="form-group"> |
|
|
21 |
<label for="formGroupExampleInput2">Description</label> |
|
|
22 |
<input type="text" class="form-control" id="formGroupExampleInput2" placeholder="Another input"> |
|
|
23 |
</div> |
|
|
24 |
|
|
|
25 |
<button type="submit" class="btn btn-primary">Enregistrer</button> |
|
|
26 |
</form> |
|
|
27 |
|
|
|
28 |
<h3 class="mt-5"> |
|
|
29 |
Protocole d'annotations |
|
|
30 |
</h3> |
|
|
31 |
|
|
|
32 |
<p class="text-muted small">Le procole d'annotation est ensemble de méta-catégories définies par le groupe afin d'avoir un langage commun d'intentions.</p> |
|
|
33 |
|
|
|
34 |
{% for metacategory in site.data.metacategories %} |
|
|
35 |
<h4><span style="border-bottom: 3px solid rgb{{ metacategory.color }};">{{ metacategory.label }}</span></h4> |
|
|
36 |
|
|
|
37 |
<p>{{ metacategory.description }}</p> |
|
|
38 |
{% endfor %} |
|
|
39 |
|
|
|
40 |
{% for metacategory in site.data.metacategories-extra %} |
|
|
41 |
<h4><span style="border-bottom: 3px solid rgb{{ metacategory.color }};">{{ metacategory.label }}</span></h4> |
|
|
42 |
|
|
|
43 |
<p>{{ metacategory.description }}</p> |
|
|
44 |
{% endfor %} |
|
|
45 |
|
|
|
46 |
<button type="submit" class="btn btn-primary">Enregistrer</button> <span class="small ml-2"><a href="#">voir l'historique</a></span> |
|
|
47 |
|
|
|
48 |
</div> |
|
|
49 |
</div> |
|
|
50 |
</div> |