Spaces:
Runtime error
Runtime error
Update template/resume_template.html
Browse files- template/resume_template.html +36 -24
template/resume_template.html
CHANGED
@@ -3,33 +3,45 @@
|
|
3 |
<head>
|
4 |
<meta charset="UTF-8">
|
5 |
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
6 |
-
<title>Resume
|
7 |
<style>
|
8 |
-
body {
|
9 |
-
|
10 |
-
|
11 |
-
padding: 20px;
|
12 |
-
border: 1px solid #ccc;
|
13 |
-
border-radius: 10px;
|
14 |
-
max-width: 800px;
|
15 |
-
background-color: #f9f9f9;
|
16 |
-
}
|
17 |
-
h1 {
|
18 |
-
text-align: center;
|
19 |
-
color: #333;
|
20 |
-
}
|
21 |
-
h2 {
|
22 |
-
color: #555;
|
23 |
-
}
|
24 |
-
p {
|
25 |
-
line-height: 1.5;
|
26 |
-
color: #666;
|
27 |
-
}
|
28 |
</style>
|
29 |
</head>
|
30 |
<body>
|
31 |
-
<
|
32 |
-
|
33 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
34 |
</body>
|
35 |
</html>
|
|
|
3 |
<head>
|
4 |
<meta charset="UTF-8">
|
5 |
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
6 |
+
<title>Enhanced Resume</title>
|
7 |
<style>
|
8 |
+
body { font-family: Arial, sans-serif; }
|
9 |
+
.header { text-align: center; padding: 20px; }
|
10 |
+
.section { margin: 20px; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
11 |
</style>
|
12 |
</head>
|
13 |
<body>
|
14 |
+
<div class="header">
|
15 |
+
<h1>{{ name }}</h1>
|
16 |
+
<p>{{ email }} | {{ phone }} | {{ location }}</p>
|
17 |
+
</div>
|
18 |
+
<div class="section">
|
19 |
+
<h2>Professional Summary</h2>
|
20 |
+
<p>{{ summary }}</p>
|
21 |
+
</div>
|
22 |
+
<div class="section">
|
23 |
+
<h2>Skills</h2>
|
24 |
+
<ul>
|
25 |
+
{% for skill in skills %}
|
26 |
+
<li>{{ skill }}</li>
|
27 |
+
{% endfor %}
|
28 |
+
</ul>
|
29 |
+
</div>
|
30 |
+
<div class="section">
|
31 |
+
<h2>Experience</h2>
|
32 |
+
<ul>
|
33 |
+
{% for experience in experiences %}
|
34 |
+
<li>{{ experience }}</li>
|
35 |
+
{% endfor %}
|
36 |
+
</ul>
|
37 |
+
</div>
|
38 |
+
<div class="section">
|
39 |
+
<h2>Education</h2>
|
40 |
+
<ul>
|
41 |
+
{% for education in educations %}
|
42 |
+
<li>{{ education }}</li>
|
43 |
+
{% endfor %}
|
44 |
+
</ul>
|
45 |
+
</div>
|
46 |
</body>
|
47 |
</html>
|