forked from betagouv/beta.gouv.fr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
startups.html
47 lines (41 loc) · 1.55 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
42
43
44
45
46
47
---
title: Portefeuille
menu_index: 1
additional_css: portfolio
additional_css: dashboard
---
<h1 class="site-description">
{{ site.description }}.<br/>
Vous trouverez ici tous les services créés avec l'<a href="/#cycle">approche Startup d'État</a>.
</h1>
<section id="dashboard">
{% include dashboard.html %}
</section>
{% for phase in site.phases.incubation %}
{% assign startups = site.startup | where:'status',phase[0] %}
<section id="{{ phase[0] }}" class="ui three stackable doubling cards container">
<h2 class="ui divider horizontal">Nos Startups d'État en {{ phase[1].name }}</h2>
<div>
{% capture phase_description %}_phases/{{phase[0]}}.md{% endcapture %}
{% capture phase_description %}{% include_relative {{phase_description}} %}{% endcapture %}
{{ phase_description | markdownify }}
</div>
{% for startup in startups %}
{% include startup-card.html description=startup %}
{% endfor %}
</section>
{% endfor %}
{% for phase in site.phases.endgame %}
{% assign startups = site.startup | where:'status',phase[0] %}
<section id="{{ phase[0] }}" class="ui three stackable doubling cards container">
<h2 class="ui divider horizontal">Nos Startups d'État {{ phase[1].name.plural }}</h2>
<div>
{% capture phase_description %}_phases/{{phase[0]}}.md{% endcapture %}
{% capture phase_description %}{% include_relative {{phase_description}} %}{% endcapture %}
{{ phase_description | markdownify }}
</div>
{% for startup in startups %}
{% include startup-card.html description=startup %}
{% endfor %}
</section>
{% endfor %}