-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcv_software.html
More file actions
139 lines (132 loc) · 3.88 KB
/
cv_software.html
File metadata and controls
139 lines (132 loc) · 3.88 KB
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.0">
<title>CV - {{ name }}</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 40px;
line-height: 1.6;
color: #333;
}
.container {
width: 100%;
max-width: 800px;
margin: 0 auto;
}
.header {
text-align: center;
margin-bottom: 20px;
}
.header h1 {
font-size: 32px;
margin: 0;
}
.header a {
color: #000;
text-decoration: none;
font-size: 16px;
}
.section {
margin-bottom: 30px;
}
.section h2 {
border-bottom: 1px solid #333;
padding-bottom: 5px;
margin-bottom: 10px;
font-size: 24px;
}
.experience, .project, .education {
margin-bottom: 20px;
}
.experience h3, .project h3 {
font-size: 20px;
margin: 0;
}
.experience .location-date, .project .tech, .education .degree {
font-style: italic;
font-size: 14px;
color: #555;
}
ul {
margin: 10px 0 0 20px;
}
ul li {
margin-bottom: 5px;
}
.skills {
font-size: 16px;
}
.skills span {
display: inline-block;
margin-right: 10px;
}
</style>
</head>
<body>
<div class="container">
<div class="header">
<h1>{{ name }}</h1>
<a href="{{ website }}">{{ website }}</a>
</div>
<div class="section">
<h2>Contact Information</h2>
<p><strong>Email:</strong> {{ email }}</p>
<p><strong>Phone:</strong> {{ phone }}</p>
<p><strong>Address:</strong> {{ address }}</p>
</div>
<div class="section">
<h2>Profile</h2>
<p>{{ profile }}</p>
</div>
<div class="section">
<h2>Professional Experience</h2>
{% for job in experiences %}
<div class="experience">
<h3>{{ job.title }} - {{ job.company }}</h3>
<div class="location-date">{{ job.location }} | {{ job.start_date }} - {{ job.end_date }}</div>
<ul>
{% for duty in job.duties %}
<li>{{ duty }}</li>
{% endfor %}
</ul>
</div>
{% endfor %}
</div>
<div class="section">
<h2>Projects</h2>
{% for project in projects %}
<div class="project">
<h3>{{ project.title }} ({{ project.tech }})</h3>
<div class="tech">{{ project.description }}</div>
<ul>
{% for detail in project.details %}
<li>{{ detail }}</li>
{% endfor %}
</ul>
</div>
{% endfor %}
</div>
<div class="section">
<h2>Skills</h2>
<div class="skills">
{% for skill in skills %}
<span>{{ skill }}</span>
{% endfor %}
</div>
</div>
<div class="section">
<h2>Education</h2>
{% for edu in education %}
<div class="education">
<h3>{{ edu.institution }}</h3>
<div class="degree">{{ edu.degree }}</div>
<div class="location-date">{{ edu.location }} | {{ edu.date }}</div>
</div>
{% endfor %}
</div>
</div>
</body>
</html>