-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
88 lines (83 loc) · 3.15 KB
/
index.html
File metadata and controls
88 lines (83 loc) · 3.15 KB
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
86
87
88
---
layout: default
title: DESSERT's Home Page
notitle: true
# groups of columns of {roles: list, width: num, image: bool}
role-tables:
- - roles: [faculty]
width: 12
image: true
- - roles: [postdoc]
width: 12
image: true
- - roles: [phd_student]
width: 12
image: true
- - roles: [visiting_researchers]
width: 12
image: true
- - roles: [former_researchers]
width: 12
image: true
---
<div class="hero-intro">
<p class="hero-desc">The <strong>DESSERT</strong> (<strong>DE</strong>pendable and <strong>S</strong>ecure <strong>S</strong>oftware <strong>E</strong>ngineering and <strong>R</strong>eal-<strong>T</strong>ime Systems) research group at the <a href="https://www.unina.it/home">Università degli Studi di Napoli Federico II</a> conducts research in the design, the assessment, and the verification of dependable, secure, and real-time systems. Such systems often have requirements for dependability, security, and temporal behaviors. These requirements may contradict one another. By providing unified software engineering methodologies and techniques to assess system response times, dependability, and security during the entire design process, the research group defines and applies new engineering principles to the design and the verification of critical systems.</p>
<div class="hero-tags">
<span>Dependability</span>
<span>Security</span>
<span>Real-Time Systems</span>
<span>Software Engineering</span>
<span>Fault Injection</span>
<span>AI & ML Security</span>
</div>
</div>
<section>
<pre>
<h2>News</h2>
</pre>
<ul class="news list-unstyled">
{% for post in site.posts limit: site.front_page_news %}
{% include news-item.html item=post %}
{% endfor %}
</ul>
{% assign numposts = site.posts | size %}
{% if numposts >= 1 %}
<p>
<span class="fa fa-fw fa-history"></span>
<a href="{{ "/blog.html" | relative_url }}">Older posts…</a>
</p>
{% endif %}
</section>
<div id="people">
<pre>
<h2>People</h2>
</pre>
{% for role-table in page.role-tables %}
<section class="people row justify-content-between">
{% for role-column in role-table %}
<div class="col-md-{{ role-column.width }}">
{% for role in role-column.roles %}
{% include role-people.html role=role image=role-column.image %}
{% endfor %}
</div>
{% endfor %}
</section>
{% endfor %}
</div>
<section>
<pre>
<h2>Research Projects</h2>
</pre>
<div class="card-columns">
{% comment %}
Sort the projects by date, putting those without dates last
{% endcomment %}
{% assign projects_by_date = site.projects_current | sort: 'last-updated', 'first' %}
{% assign projects_by_date = projects_by_date | reverse %}
{% for p in projects_by_date %}
{% if p.status != "inactive" %}
{% include project-card.html project=p %}
{% endif %}
{% endfor %}
</div>
</section>