-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
108 lines (97 loc) · 4.7 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
---
title: Sheikh Usman Ali
---
{% assign personalData = site.data.personal[0] %}
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<meta http-equiv="X-UA-Compatible" content="chrome=1">
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/bulma/0.4.1/css/bulma.min.css"/>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<!--link rel="stylesheet" type="text/css" href="stylesheets/stylesheet.css" media="screen" /-->
<title>{{ personalData.name }}</title>
</head>
<body>
<div class="columns" style="padding-top:20px">
<div class="column is-8 is-offset-2">
<div class="level content is-marginless">
<p class="title is-2">{{ personalData.name }}</p>
<p class="subtitle is-5">
<a href="mailto:{{ personalData.email }}" class="icon"><i class="fa fa-envelope-square" aria-hidden="true"></i></a>
<a href="{{ personalData.linkedin }}" class="icon"><i class="fa fa-linkedin-square" aria-hidden="true"></i></a>
<a href="{{ personalData.facebook }}" class="icon"><i class="fa fa-facebook-square" aria-hidden="true"></i></a>
<a href="{{ personalData.github }}" class="icon"><i class="fa fa-github-square" aria-hidden="true"></i></a>
<!--a href="kumarpallav_resume.pdf" class="icon" download><i class="fa fa-download" aria-hidden="true"></i></a-->
</p>
</div>
<div class="content">
<span class="heading"><h3>Education</h3></span>
{% for schoolData in site.data.edu %}
<div class="level">
<p class="is-marginless">{{ schoolData.school }}<br/><span class="content is-marginless" style="font-size: 0.8rem">{{ schoolData.degree }}</span></p>
<p style="text-align: right; font-size: 0.8rem">{{ schoolData.school_location }}<br/><span class="content is-marginless">{{ schoolData.time_period }}</span></p>
</div>
{% endfor %}
</div>
<div class="content">
<span class="heading"><h3>Experience</h3></span>
{% for experience in site.data.exp %}
<div class="level is-marginless">
<p class="is-marginless">{{ experience.company }}<br/><span class="content is-marginless" style="font-size: 0.8rem">{{ experience.role }}, {{ experience.team }}</span></p>
<p style="text-align: right; font-size: 0.8rem">{{ experience.company_location }}<br/><span class="content is-marginless">{{ experience.time_duration }}</span></p>
</div>
<ul style="margin-top: 0.2em; list-style-type: circle;">
{% for detail in experience.details %}
<li class="content is-marginless" style="font-size: 0.8rem">
<span class="heading is-marginless">
{{ detail.title }}
<span style="margin-left: 5px; font-size: 10px; font-family: monospace; color: #00d1b2;">{{ detail.languages }}</span>
</span>
{{ detail.description }}
</li>
{% endfor %}
</ul>
{% endfor %}
</div>
<div class="content">
<span class="heading"><h3>Projects</h3></span>
{% for project in site.data.proj %}
<p class="heading is-marginless">
{{ project.title }}
<span style="margin-left: 5px; font-size: 10px; font-family: monospace; color: #00d1b2;">{{ project.languages }}</span>
</p>
<p style="font-size: 0.8rem">{{ project.description }}</p>
{% endfor %}
</div>
<div class="content">
<span class="heading"><h3>Skills</h3></span>
<p class="heading is-marginless">Languages</p>
<p style="font-size: 0.8rem">
{% for language in personalData.languages %}
{{language.language}}
{% endfor %}
</p>
<p class="heading is-marginless">Technologies</p>
<p style="font-size: 0.8rem">
{% for technology in personalData.technologies %}
{{technology.technology}}
{% endfor %}
</p>
</div>
<footer class="footer" style="background: inherit;">
<div class="content has-text-centered">
<p>
<a class="icon" href="https://github.com/usmandroid/usmandroid.github.io">
<i class="fa fa-github"></i>
</a>
<a href="sheikhUsmanAli_resume.pdf" class="icon" download>
<i class="fa fa-download" aria-hidden="true">
</i></a>
</p>
</div>
</footer>
</div>
</div>
</body>
</html>