-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathraise.html
More file actions
81 lines (77 loc) · 3.77 KB
/
raise.html
File metadata and controls
81 lines (77 loc) · 3.77 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
---
layout: base
title: Projects
navlink: /projects
image:
feature: raise2.png
---
<!--Release Section-->
<div class="container">
<!--Heading-->
<div class="row mt-5 mb-4">
<div class="col">
<center><img src="/assets/img/raise.png" width="70%"/></center>
<p>The <b>Rigorous, Agile, and Intelligent Systems Engineering (RAISE) LAB</b> carries applied research leveraging multidisciplinary techniques from Formal Methods
(rigor), DevOps (agility), and AI (automation) to modernize the field of systems engieering. The lab runs R&D projects often in collaboration with
leading (academic, corporate, or government) labs. If you are interested in collaborating on the existing projects, or starting new ones, please contact
<a href="mailto:modelwaresolutions@gmail.com">Dr. Maged Elaasar</a> from <a href="https://modelware.io/">Modelware</a> to discuss possiblities.</p>
</div>
</div>
<!-- Active project list -->
<p class="title-oc">Active Projects</p>
<div class="row pl-1 pb-3 mb-5">
{% for post in site.projects reversed%}
{% if post.current %}
<div id={{forloop.index}} class="col col-sm-12 col-lg-4 pt-3 px-2">
<div class="card">
<div class="card-body blog-card-oc pt-4">
<p class="blog-card-date-oc">{{post.date | date: '%B %d, %Y'}}</p>
<p class="blog-card-title-oc">{{post.title}}</p>
<img src="{{post.image.feature | prepend: 'assets/img/' | relative_url}}" class="mr-3" style="height: 140px;">
<div class="blog-auth-info">
<div class="card-underline mb-4"></div>
<div class="media">
<img src="{{post.author_image | prepend: 'assets/img/' | relative_url}}" class="mr-3" style="width: 50px; border-radius: 2rem">
<div class="media-body">
<p class="card-auth-name mt-2">{{post.author}}</p>
</div>
</div>
<a href="{{post.url | relative_url}}" class="btn btn-outline-primary button-oc mt-5">Read More</a>
</div>
</div>
</div>
</div>
{% endif %}
{% endfor %}
</div>
<!---->
<!-- Completed project list -->
<p class="title-oc">Completed Projects</p>
<div class="row pl-1 pb-3 mb-5">
{% for post in site.projects reversed%}
{% if post.current == false %}
<div id={{forloop.index}} class="col col-sm-12 col-lg-4 pt-3 px-2">
<div class="card">
<div class="card-body blog-card-oc pt-4">
<p class="blog-card-date-oc">{{post.date | date: '%B %d, %Y'}}</p>
<p class="blog-card-title-oc">{{post.title}}</p>
<img src="{{post.image.feature | prepend: 'assets/img/' | relative_url}}" class="mr-3" style="width: 150px;">
<div class="blog-auth-info">
<div class="card-underline mb-4"></div>
<div class="media">
<img src="{{post.author_image | prepend: 'assets/img/' | relative_url}}" class="mr-3" style="width: 50px; border-radius: 2rem">
<div class="media-body">
<p class="card-auth-name mt-2">{{post.author}}</p>
</div>
</div>
<a href="{{post.url | relative_url}}" class="btn btn-outline-primary button-oc mt-5">Read More</a>
</div>
</div>
</div>
</div>
{% endif %}
{% endfor %}
</div>
<!---->
</div>
<!---->