-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathold.html
59 lines (57 loc) · 1.78 KB
/
old.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
---
layout: default
---
{% include navigation.html %}
<div class="container">
<div class="row justify-content-center mb-4">
<div class="col-12 col-lg-8 col-xl-6 ml-top-padding">
<h1>Work</h1>
<p class="p-large">The full list of projects, initiatives, and volunteering work I have been part of.</p>
<h2>Active projects</h2>
<ul>
{% assign ordered_projects = site.experiences | sort:"order" %}
{% for project in ordered_projects %}
{% if project.type == 'current' %}
<li class="mb-2">
<div class="font-weight-bold"><a class="underline"
href="{{ site.baseurl }}{{ project.url }}">{{project.title}}</a>
</div>
<div class="font-italic"><i>{{project.category}}</i></div>
<div>{{project.description}}</div>
</li>
{% endif %}
{% endfor %}
</ul>
<h2>Previous projects</h2>
<ul>
{% assign ordered_projects = site.experiences | sort:"order" %}
{% for project in ordered_projects %}
{% if project.type == 'old' %}
<li class="mb-2">
<div class="font-weight-bold"><a class="underline"
href="{{ site.baseurl }}{{ project.url }}">{{project.title}}</a>
</div>
<div class="font-italic">{{project.category}}</div>
<div>{{project.description}}</div>
</li>
{% endif %}
{% endfor %}
</ul>
<h2>Volunteering</h2>
<ul>
{% assign ordered_projects = site.experiences | sort:"order" %}
{% for project in ordered_projects %}
{% if project.type == 'volunteering' %}
<li class="mb-2">
<div class="font-weight-bold"><a class="underline"
href="{{ site.baseurl }}{{ project.url }}">{{project.title}}</a>
</div>
<div class="font-italic">{{project.category}}</div>
<div>{{project.description}}</div>
</li>
{% endif %}
{% endfor %}
</ul>
</div>
</div>
</div>