forked from betagouv/beta.gouv.fr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
startups.html
41 lines (35 loc) · 1.23 KB
/
startups.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
---
title: Toute nos Startups d'État
additional_css: portfolio
---
<h2>
{{ site.description }}.<br/>
Vous trouverez ici tous les services créés avec l'<a href="{{ site.baseurl }}#cycle">approche Startup d'État</a>.
</h2>
<section id="dashboard">
<ol class="counter--incubation">
{% for phase in site.phases.incubation %}
<li class="counter {{ phase[0] }}">
<span class="counter--count">{{ site.startup | where:'status',phase[0] | size }}</span>
<i>startups en</i>
<span class="tooltip counter--name" title="{{ phase[1].description }}">{{ phase[1].name }}</span>
</li>
{% endfor %}
<li>
<ul class="counter--endgame">
{% for phase in site.phases.endgame %}
<li class="counter {{ phase[0] }}">
<span class="counter--count">{{ site.startup | where:'status',phase[0] | size }}</span>
<span class="tooltip counter--name" title="{{ phase[1].description }}">{{ phase[1].name.plural }}</span>
</li>
{% endfor %}
</ul>
</li>
</ol>
</section>
<section id="list" class="ui three stackable doubling cards container">
<h2 class="ui divider horizontal">Toutes nos Startups d'État</h2>
{% for startup in site.startup %}
{% include startup-card.html description=startup %}
{% endfor %}
</section>