-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtemplate_education.html
45 lines (44 loc) · 1.28 KB
/
template_education.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
<div class="section-box">
<div class="row">
<div class="col-3">
<strong>
<span>
{{item.title}}
</span>
</strong>
<br>
<span>
{{item.organization}}
<a href="{{item.url}}"></a>
</span>
<br>
<span>
{{item.date_from}} - {{item.date_until}}
</span>
</div>
<div class="col">
<span>
{{item.description}}
</span>
</div>
</div>
</div>
<div class="section-box">
<div class="row">
<div class="col-3">
<div class="row">
<div class="col-auto" style="padding-right: 0.5rem"><img src="{{item.img}}" class="img"></div>
<div class="col">
<div class="row"><strong>{{item.title}}</strong></div>
<div class="row"><a href="{{item.url}}">{{item.organization}}</a></div>
</div>
</div>
<div class="row">
<div class="col">
{{item.date_obtained}}
</div>
</div>
</div>
<div class="col-9"><span>{{item.description}}</span></div>
</div>
</div>