-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
95 lines (92 loc) · 3.66 KB
/
index.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
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
89
90
91
92
93
94
95
---
layout: page
---
<html>
<meta>
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Fira+Mono">
</meta>
<body class="comein" style="padding-top: 2%;">
<div class="section-header" style="color: #928ADE;">Work</div>
<div class="content">
{% for job in site.data.work %}
<h4><b>{{ job.organization }}</b></h4>
<div style="margin-left: 0px;">
{% for rank in job.ranks %}
{% if rank.end_month_year %}
<h5><i>{{ rank.title }} ⸱ {{ rank.start_month_year }} - {{ rank.end_month_year }}</i></h5>
{% else %}
<h5><i>{{ rank.title }} ⸱ {{ rank.start_month_year }} - Current</i></h5>
{% endif %}
<ul>
{% for accomplishment in rank.accomplishments %}
<li>{{ accomplishment }}</li>
{% endfor %}
</ul>
{% endfor %}
</div>
<br>
{% endfor %}
</div>
<div class="section-header" style="color: #EA6B8D">Education</div>
<div class="content">
{% for degree in site.data.education %}
<h4>{{ degree.university }} - {{ degree.name }}</h4>
<div style="margin-left: 10px;">
{% if degree.minor %}
<h5>{{ degree.minor }} Minor</h5>
{% endif %}
{% if degree.end %}
<p>{{ degree.start }} - {{ degree.end }}</p>
{% else %}
<p>{{ degree.start }} - Current (Expected {{ degree.expected }})</p>
{% endif %}
<p>GPA: {{ degree.gpa }}</p>
</div>
{% endfor %}
<br>
</div>
<div class="section-header" style="color: #94DA9A;">Projects</div>
<div class="content hiddencontent">
{% for project in site.data.projects %}
<h4 style="display: inline-block; vertical-align: middle;"><b>{{ project.name }}</b></h4>
{% if project.github_link %}
<a class="pointyboi github" href="{{ project.github_link }}"><span>GitHub</span></a>
{% endif %}
<div style="margin-left: 20px;">
<h5>{{ project.description }}</h5>
<h5>Experience Gained:</h5>
<ul>
{% for experience in project.experience_gained %}
<li>{{ experience }}</li>
{% endfor %}
</ul>
<h5>Contributions:</h5>
<ul>
{% for contribution in project.contributions %}
<li>{{ contribution }}</li>
{% endfor %}
</ul>
</div>
{% endfor %}
<br>
</div>
<div class="show_more">
<a class="coolunderline" href="" onclick="return false;">Show more</a>
</div>
<div class="section-header" style="color: #F8E67A;">Skills</div>
<div class="content hiddencontent">
{% for skill_level in site.data.skills %}
<h4>{{ skill_level.name }}</h4>
<ul>
{% for skill in skill_level.skills %}
<li>{{ skill }}</li>
{% endfor %}
</ul>
{% endfor %}
<br>
</div>
<div class="show_more">
<a class="coolunderline" href="" onclick="return false;">Show more</a>
</div>
</body>
</html>