-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
66 lines (65 loc) · 1.67 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
---
layout: default
---
<div class="page page-home">
<section class="section about-me">
<div>
<h1>{{ site.data.resume.about.title }}</h1>
{% for para in site.data.resume.about.body %}
<p>{{ para }}</p>
{% endfor %}
</div>
<img
src="{{ site.data.resume.about.image.src }}"
alt="{{ site.data.resume.about.image.alt }}"
/>
</section>
<h2>Contact</h2>
<ul>
<li>
Download Resume in
<a href="{{ site.data.resume.download.pdf }}">PDF</a> or
<a
href="{{
site.data.resume.download.txt }}"
>text</a
>
</li>
<li>{{ site.data.resume.contact.email.privacyText }}</li>
<li>
<a href="{{ site.data.resume.contact.github.url }}"
>{{ site.data.resume.contact.github.text }}</a
>
</li>
<li>
<a href="{{ site.data.resume.contact.linkedin.url }}"
>{{ site.data.resume.contact.linkedin.text }}</a
>
</li>
</ul>
<h2>Skills</h2>
<ul>
{% for skill_line in site.data.resume.skills %}
<li>{{ skill_line | join: ", " }}</li>
{% endfor %}
</ul>
<h2>Work Experience</h2>
{% for experience in site.data.resume.experiences %}
<h3>
<a href="{{ experience.website }}">{{ experience.title }}</a>, {{
experience.position }}, {{ experience.location }}, {{ experience.tenure }}
</h3>
<ul>
{% for point in experience.points %}
<li>{{ point }}</li>
{% endfor %}
</ul>
{% endfor %}
<h2>Education</h2>
{% assign education = site.data.resume.education.first %}
<h3>
{{ education.degree }}, {{ education.field }}, {{ education.institution }},
{{ education.tenure }}
</h3>
CGPA {{ education.cgpa }}
</div>