-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
138 lines (123 loc) · 5.69 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
---
layout: default
---
<div class="container-fluid">
<div class="row-fluid">
<div class="col-md-8">
<!-- Work -->
{% if site.data.author.workHistory %}
<h3 class="title with-icon">
<span class="glyphicon glyphicon-plane cat-title"></span>
Work History
</h3>
<ul class="timeline">
{% include workhistory.html %}
</ul>
{% endif %}
<!-- Work -->
<!-- Education -->
{% if site.data.author.educationHistory %}
<h3 class="title with-icon"><span class="fa fa-book cat-title"></span>Education History</h3>
<ul class="timeline">
{% include education.html %}
</ul>
{% endif %}
<!-- Education -->
</div>
<div class="col-md-4">
<!-- programmingSkills -->
{% if site.data.author.programmingSkills %}
<h3 class="title with-icon"><span class="fa fa-code cat-title"></span> Programming Skills</h3>
{% if site.data.author.programmingSkills %}
<div class="grid-block">
<ul class="list-unstyled list-skills">
{% for programmingSkill in site.data.author.programmingSkills %}
<li>
{% if programmingSkill.name %}
<span class="caption-skill">{{ programmingSkill.name }}</span>
{% endif %}
{% if programmingSkill.percentage %}
<div class="progress">
<div class="progress-bar" style="width: {{ programmingSkill.percentage }}">
<span>{{ programmingSkill.percentage }} </span>
</div>
</div>
{% endif %}
</li>
{% endfor %}
</ul>
</div>
{% endif %}
{% endif %}
<!-- programmingSkills -->
<!-- Frameworks -->
{% if site.data.author.frameworks %}
<h3 class="title with-icon"><span class="fa fa-cogs cat-title"></span> Frameworks</h3>
{% if site.data.author.frameworks %}
<div class="grid-block">
<ul class="list-unstyled list-skills">
{% for framework in site.data.author.frameworks %}
<li>
{% if framework.name %}
<span class="caption-skill">{{ framework.name }}</span>
{% endif %}
{% if framework.percentage %}
<div class="progress">
<div class="progress-bar" style="width: {{ framework.percentage }}">
<span>{{ framework.percentage }} </span>
</div>
</div>
{% endif %}
</li>
{% endfor %}
</ul>
</div>
{% endif %}
{% endif %}
<!-- Frameworks -->
<!-- Others -->
{% if site.data.author.others %}
<h3 class="title with-icon"><span class="fa fa-asterisk cat-title"></span> Others</h3>
{% if site.data.author.others %}
<div class="grid-block">
<ul class="list-unstyled list-skills">
{% for other in site.data.author.others %}
<li>
{% if other.name %}
<span class="caption-skill">{{ other.name }}</span>
{% endif %}
{% if other.percentage %}
<div class="progress">
<div class="progress-bar" style="width: {{ other.percentage }}">
<span>{{ other.percentage }} </span>
</div>
</div>
{% endif %}
</li>
{% endfor %}
</ul>
</div>
{% endif %}
{% endif %}
<!-- Others -->
<!-- Languages -->
{% if site.data.author.languages %}
<div class="deviter"></div>
<h3 class="title with-icon"><span class="fa fa-globe cat-title"></span> Language Skills</h3>
<div class="grid-block">
<ul class="list-unstyled list-strip">
{% include languages.html %}
</ul>
</div>
{% endif %}
<!-- Languages -->
<!-- Location -->
<!-- <div class="deviter"></div>
<h3 class="title with-icon"><span class="fa fa-location-arrow cat-title"></spLocation</h3> -->
<!-- <div class="grid-block">
<iframe src="https://www.google.com/maps/embed/v1/place?qsite.data.author.address }}&key=AIzaSyClEWLh20lxrQBFR7omuuVESviszPxONwidth="100%" height="100%" frameborder="0" style="border:0"></iframe>
</div> -->
<!-- Location -->
</div>
</div>
</div>