-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathproposals.html
More file actions
44 lines (38 loc) · 822 Bytes
/
proposals.html
File metadata and controls
44 lines (38 loc) · 822 Bytes
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
---
layout: page
title: Proposals
background: grey
---
<style>
.proposal {
padding: 20px;
border: solid;
margin-bottom: 20px;
border-width: 0;
border-bottom-width: 2px;
}
img {
max-height: 250px;
}
</style>
<h3 style="text-align: center">MASTER THESIS PROPOSALS</h3>
<br/>
{% for thesis in site.master %}
<div class="proposal">
<h4><u><mark>{{ thesis.title }}</mark></u></h4>
<h7><i>Type:</i> {{ thesis.type }}</h7>
<br/>
<h7>
<i>Contact: </i>
{%for contact in thesis.contact %}
<a href='mailto:{{ contact }}'>{{ contact }}</a>
{% endfor %}
</h7>
<p>{{ thesis.content | markdownify }}</p>
<div class="row" style="padding: 20px; padding-left: 50px; padding-right: 50px">
<img class="img-fluid" src="{{ thesis.image }}"></img>
</div>
</div>
{% endfor %}
<br/><br/>
<h3>PHD THESIS PROPOSALS</h3>