-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
209 lines (195 loc) · 5.65 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
---
layout: default
---
<!-- Profile Section -->
<div class="container" align="center">
<div class="headline">
<p><span>Who Am I?</span></p>
<h2>Personal Details</h2>
</div>
</div>
<div class="container">
{% for profile in site.profile %}
<div class="row">
<div class="five columns" align="left">
<ul class="personal-details">
<li><strong>Name </strong>{{ profile.name }}</li>
<li><strong>Location </strong>{{ profile.location }}</li>
<li>
<strong>Email </strong
><a
href="mailto:{{ profile.email }}?subject=Hi I saw your resume online"
>{{ profile.email }}</a
>
</li>
<li>
<strong>LinkedIn </strong>
<a href="{{ profile.linkedin }}">Profile</a>
</li>
<li>
<strong>GitHub </strong>
<a href="{{ profile.github }}">Repositories</a>
</li>
<li>
<strong>Artworks </strong
><a href="{{ profile.postimages }}">Paintings & Digital art</a>
</li>
<li>
<strong>Youtube </strong>
<a href="{{ profile.youtube }}">Piano Recordings</a>
<span>/</span>
<a href="{{ profile.organ }}">Organ Recordings</a>
</li>
</ul>
</div>
<div class="seven columns">
<h3>Professional Profile</h3>
{{ profile.content }}
</div>
</div>
{% endfor %}
</div>
<section class="u-full-width" id="experience">
<div class="container" align="center">
<div class="headline" align="center">
<p><span>Professional Background</span></p>
<h2>Work Experience</h2>
</div>
</div>
<div class="container">
{% for experience in site.experience reversed %}
<div class="row">
<div class="five columns">
<h2 class="date">{{ experience.period }}</h2>
<h4 class="employer">{{ experience.employer }}</h4>
</div>
<div class="seven columns">
<h3>{{ experience.title }}</h3>
{{ experience.content }}
</div>
</div>
{% endfor %}
</div>
</section>
<section class="u-full-width" id="education">
<div class="container" align="center">
<div class="headline" align="center">
<p><span>Learning & Training</span></p>
<h2>Education</h2>
</div>
</div>
<div class="container">
{% for education in site.education reversed %}
<div class="row">
<div class="five columns">
<h2 class="date">{{ education.period }}</h2>
<h4 class="institution">{{ education.institution }}</h4>
</div>
<div class="seven columns">
<h3>{{ education.title }}</h3>
{{ education.content }}
</div>
</div>
{% endfor %}
</div>
</section>
<section class="u-full-width" id="awards">
<div class="container" align="center">
<div class="headline" align="center">
<p><span>Recognition</span></p>
<h2>Honours & Awards</h2>
</div>
</div>
<div class="container">
{% for award in site.award reversed %}
<div class="row">
<div class="five columns">
<h2 class="date">{{ award.issued }}</h2>
<h4 class="institution">{{ award.issuer }}</h4>
</div>
<div class="seven columns">
<h3>{{ award.title }}</h3>
</div>
</div>
{% endfor %}
</div>
</section>
<section class="u-full-width" id="projects">
<div class="container" align="center">
<div class="headline" align="center">
<p><span>Experience</span></p>
<h2>Projects</h2>
</div>
</div>
<div class="container">
{% for projects in site.projects reversed %}
<div class="row">
<div class="five columns">
<h2 class="date">{{ projects.period }}</h2>
<h4 class="institution">{{ projects.type }}</h4>
</div>
<div class="seven columns">
<h3>{{ projects.title }}</h3>
<p class="members">{{ projects.members }}</p>
{{ projects.content}}
<p>
<a href="{{ projects.github }}" class="button button-primary"
>Github</a
>
{% if projects.app %}
<a href="{{ projects.app }}" class="button button-primary">App</a>
{% endif %} {% if projects.youtube %}
<a href="{{ projects.youtube }}" class="button button-primary"
>Youtube</a
>
{% endif %} {% if projects.screenshots %}
<a href="{{ projects.screenshots }}" class="button button-primary"
>Screenshots</a
>
{% endif %} {% if projects.documentation %}
<a href="{{ projects.documentation }}" class="button button-primary"
>Docs</a
>
{% endif %}
</p>
</div>
</div>
{% endfor %}
</div>
</section>
<section class="u-full-width" id="skills">
<div class="container" align="center">
<div class="headline" align="center">
<p><span>Areas of Expertise</span></p>
<h2>Skills</h2>
</div>
</div>
<div class="container">
{% for skills in site.skills %}
<div class="row">
<div class="five columns">
<h2 class="date">{{ skills.title }}</h2>
</div>
<div class="seven columns">{{ skills.content }}</div>
</div>
{% endfor %}
</div>
</section>
<section class="u-full-width" id="interests">
<div class="container" align="center">
<div class="headline" align="center">
<p><span>Outside</span></p>
<h2>Interests</h2>
</div>
</div>
<div class="container">
{% for interests in site.interests %}
<div class="row">
<div class="five columns">
<h2 class="date">{{ interests.title }}</h2>
</div>
<div class="seven columns">{{ interests.content }}</div>
</div>
{% endfor %}
</div>
</section>