generated from sneas/cv-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
139 lines (134 loc) · 5.5 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>{{ name }}. {{ title }}</title>
<link rel="icon" href="favicon.ico" type="image/x-icon" />
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;500&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.0/dist/css/bootstrap.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.2/css/all.min.css">
<link rel="stylesheet" href="styles.css">
<base target="_blank">
</head>
<body>
<div class="container page">
<div class="border-bottom border-2 border-print-0 border-dark mb-2 pb-2 pb-print-0 mb-print-0">
<div class="row">
<div class="col-print-6 col-12 col-md-4 d-flex justify-content-between flex-column">
<div>
<h4 class="mb-2">{{ name }}</h3>
<div class="fs-6">{{ title }}</div>
</div>
<div>
<p>
<!-- <span class="small">while(i<u) i++;</span> -->
<!-- <time datetime="{{ buildinfo.date }}" class="small">Last update: {{ updated }}</time> -->
</p>
<p>
<span class="screen"><a href="{{ pdfFileName }}"><i class="far fa-file-pdf"></i>Download PDF
version</a></span>
<span class="print">Update at <a href="{{ baseUrl }}"
class="text-nowrap"><i class="fab fa-github" aria-hidden="true"></i>{{ baseUrl
}}</a></span>
</p>
</div>
</div>
<div class="col-4 col-md-3 col-lg-2 offset-lg-1 d-none d-md-block align-md-self-center text-center">
<!--img src="photo.jpg" class="rounded-circle img-fluid" alt="{{ name }}"-->
</div>
<div class="col-print-6 col-12 col-md-5 offset-lg-1 col-lg-4">
<ul class="list-group list-group-flush">
{{#each facts}}
<li class="list-group-item d-flex justify-content-between align-items-start" style="padding: 4px 8px;">
<!--span class="text-nowrap">{{ @key }}</span-->
<span class="text-nowrap">{{{ this }}}</span>
</li>
{{/each}}
</ul>
</div>
</div>
</div>
<div class="border-bottom border-2 border-print-0 border-dark mb-2 pb-2 pb-print-0 mb-print-0">
<h5 class="mb-2">Summary</h5>
<p class="lynchin">— Experienced backend developer in Java, Node.js, and Python. Delivers high-quality
software solutions for clients and passionate about creating efficient solutions that meet
unique needs of clients and end-users.
</p>
<p class="lynchin">— Self-motivated individual with excellent problem-solving skills. Collaborates with
project managers to deliver projects on time and within budget. Experience in adapting to projects in
various domain and tech stacks. Willingness to learn and use new technologies to meet the requirements
of different projects.
</p>
<p class="lynchin">— Excellent communication and interpersonal skills. Keeps up-to-date with latest
technologies and industry trends, committed to growth. Confident in making valuable contributions to any
project and delivering exceptional results.
</p>
</div>
<div class="border-bottom border-2 border-print-0 border-dark mb-2 pb-2 pb-print-0 mb-print-0">
<h5 class="mb-2">Experience</h5>
{{#each company}}
<div><span class="fs-5 mb-3 under" style="color: #4193a9; font-weight: bolder;"><i
class="fa fa-building fact-icon"></i>{{cname}}</span><span
style="float:right; color: #4193a9; font-weight: bolder;" class="under lynchin2">
({{cperiod}})</span></div>
{{#each prj}}
<div class="row d-block d-md-flex{{#unless @last}} mb-2{{/unless}}">
<div class="col-md-12">
<div><span class="medium lynchin2" style="color: #08b0b5;">{{role}}</span> — <span
class="medium lynchin2" style="color: #0db4b9;">{{ title }}</span><span
class="medium lynchin2" style="float:right; color: #08b0b5;">
{{period}}</span>
</div>
<div class="lynchin">{{{markdown contents }}}</div>
<!--<p>
{{#each skills }}
<span class="badge text-body border border-1">{{ this }}</span>
{{/each}}
</p>-->
</div>
</div>
{{/each}}
{{/each}}
</div>
<div class="border-bottom border-2 border-print-0 border-dark mb-2 pb-2 pb-print-0 mb-print-0">
<h5 class="mb-2">Skills</h5>
<div class="row align-items-center">
{{#each skills}}
<div class="col-print-4 col-4 col-md-4 col-lg-3 text-right text-wrap">
<small class="lynchin"><span style="color: #4193a9;">{{ this.[0] }}</span>: {{ this.[2] }}</small>
</div>
<!-- <div class="col-print-3 col-4 col-md-4 col-lg-3 text-right">
<small class="lynchin">» {{ this.[0] }} ({{ this.[2] }})</small>
</div> -->
<!-- <div class="col-print-1 col-4 col-md-2 col-lg-1">
<div class="skills">
<div class="skills-bar" style="width: {{ this.[1] }}%"></div>
</div>
</div> -->
{{/each}}
</div>
</div>
<div class="mb-2">
<h5 class="mb-2">Education</h5>
{{#each edu}}
<div class="row d-block d-md-flex mb-2">
<div class="col-md-2 pt-1" style="color: #4193a9; font-weight: bolder;">{{period}}</div>
<div class="col-md-10">
<div><span style="color: #4193a9; font-weight: bolder;">{{name}} ({{degree}})</span></div>
<div>
<ul>
{{#each note}}
<li>{{this}}</li>
{{/each}}
</ul>
</div>
</div>
</div>
{{/each}}
</div>
</div>
</body>
</html>