-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathopenings.html
85 lines (72 loc) · 2.54 KB
/
openings.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
---
layout: default
title: Openings
openingtype:
- Ph.D.
- Internship
- Post-doc
openings:
# - title: Model-Driven Engineering for Reconfigurable Manufacturing Systems (RMS)
# type: Internship
# duration: 5 months
# employer: Université de Nantes (France) and IUT Nantes (France)
# tags: Java, Eclipse EMF (Ecore), Flexsim, DSLs, Automatisme, Manufacturing, MDE, Verification, Simulation
# doc_en: doc/sujet-rodic-m2-2022-2023-english.pdf
# doc_fr: doc/sujet-rodic-m2-2022-2023.pdf
# - title: AI-augmented Techniques for Consistency and Validity in Continuous Digital Twin Engineering
# type: Ph.D.
# duration: 3 years
# employer: IMT Atlantique (Nantes, France)
# tags: Digital Twins, Software and Systems Engineering, Model Driven Engineering (MDE), Machine Learning, Large Language Models (LLMs)
# doc_en: doc/PhDTopic-MATISSE-NaoMod.pdf
# doc_fr: doc/PhDTopic-MATISSE-NaoMod.pdf
# - title: Élaboration d'un langage dédié pour la connexion de données de terrain aux modèles épidémiologiques mécanistes (DatEpiLang)
# type: Ph.D.
# duration: 3 years
# employer: IMT Atlantique (Nantes, France)
# tags: Model Driven Engineering (MDE), Software Language Engineering (SLE), Domain-Specific Language (DSL), Mechanistic Epidemiological Models
# doc_fr: doc/sujet-these-DatEpiLang.pdf
---
<!------------------------------------------------------------------------------------------------------------------------->
<style>
.opening-type { color: #666; margin-left: 0.3rem; }
</style>
{% for type in page.openingtype %}
{% assign count = 0 %}
{% for opening in page.openings %}
{% if opening.type == type %} {% assign count = count | plus:1 %} {% endif %}
{% endfor %}
{% if count >= 1 %}
<h2> {{ type }} </h2>
<hr/>
{% for opening in page.openings %}
{% if opening.type == type %}
<section>
<h3>
{% if opening.doc_en %}
<a href="{{ opening.doc_en }}"> {{ opening.title }}</a>
{% if opening.doc_fr %}
[<a href="{{ opening.doc_fr }}">FR</a>]
{% endif %}
{% else %}
{% if opening.doc_fr %}
<a href="{{ opening.doc_fr }}"> {{ opening.title }} </a>
{% else %}
{% if opening.doc %}
<a href="{{ opening.doc }}"> {{ opening.title }} </a>
{% endif %}
{% endif %}
{% endif %}
</h3>
<span class="opening-type"> {{ opening.tags }} </span>
<p>
<ul>
<li>Duration: {{opening.duration}} </li>
<li>Employer: {{opening.employer}} </li>
</ul>
</p>
</section>
{% endif %}
{% endfor %}
{% endif %}
{% endfor %}