Spaces:
Runtime error
Runtime error
File size: 1,633 Bytes
bf7b232 |
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 |
<html>
<body>
<div class='parent'>
<div class="left">
<div class="inner">
<div class="name-hero">
<div class="name-text">
<h1>{{name}} </h1>
<h3>{{title}} </h3>
</div>
</div>
<div class="summary">
<h1>Summary</h1>
<p>{{summary}}</p>
</div>
<section>
<h1>Employment</h1>
{% for experience in workExperience %}
<p><em>{{experience.dates}} | {{experience.company}} | {{experience.title}}</em></p>
<p>{{experience.description}}</p>
{% endfor %}
</section>
<section>
<h1>Education</h1>
{% for edu in education %}
<p><em>{{edu.dates}} | {{edu.school}} | {{edu.degree}}</em></p>
<p>{{edu.description}}</p>
{% endfor %}
</section>
</div>
</div>
<div class="right">
<h1>Contact Information</h1>
<p>Email: {{email}}</p>
<p>Phone: {{phone}}</p>
<p>Address: {{address}}</p>
<p>LinkedIn: <a href="{{linkedin_url}}">LinkedIn Profile</a></p>
<p>Github: <a href="{{github_url}}">GitHub Profile</a></p>
<section>
<h1>Skills</h1>
<ul class="skill-set">
{% for skill in skills %}
<li>{{skill}}</li>
{% endfor %}
</ul>
</section>
</div>
</div>
</div>
</body>
</html>
|