Updated to support the latest schema
This commit is contained in:
125
resume.template
125
resume.template
@@ -18,6 +18,7 @@
|
|||||||
|
|
||||||
{{#resume.basics}}
|
{{#resume.basics}}
|
||||||
<h1>{{name}}</h1>
|
<h1>{{name}}</h1>
|
||||||
|
<h2>{{label}}</h2>
|
||||||
<section id="basics">
|
<section id="basics">
|
||||||
{{#email}}
|
{{#email}}
|
||||||
<div class="email">
|
<div class="email">
|
||||||
@@ -120,11 +121,68 @@
|
|||||||
{{.}}
|
{{.}}
|
||||||
</span>
|
</span>
|
||||||
{{/startDate}}
|
{{/startDate}}
|
||||||
{{#endDate}}
|
{{#if endDate}}
|
||||||
<span class="endDate">
|
<span class="endDate">
|
||||||
|
- {{endDate}}
|
||||||
|
</span>
|
||||||
|
{{else}}
|
||||||
|
<span class="endDate">
|
||||||
|
- Present
|
||||||
|
</span>
|
||||||
|
{{/if}}
|
||||||
|
</div>
|
||||||
|
{{#position}}
|
||||||
|
<div class="position">
|
||||||
|
{{.}}
|
||||||
|
</div>
|
||||||
|
{{/position}}
|
||||||
|
{{#website}}
|
||||||
|
<div class="website">
|
||||||
|
<a href="{{.}}">{{.}}</a>
|
||||||
|
</div>
|
||||||
|
{{/website}}
|
||||||
|
{{#summary}}
|
||||||
|
<div class="summary">
|
||||||
|
<p>{{.}}</p>
|
||||||
|
</div>
|
||||||
|
{{/summary}}
|
||||||
|
{{#if highlights.length}}
|
||||||
|
<ul class="highlights">
|
||||||
|
{{#highlights}}
|
||||||
|
<li>{{.}}</li>
|
||||||
|
{{/highlights}}
|
||||||
|
</ul>
|
||||||
|
{{/if}}
|
||||||
|
</div>
|
||||||
|
{{/each}}
|
||||||
|
</section>
|
||||||
|
{{/if}}
|
||||||
|
|
||||||
|
{{#if resume.volunteer.length}}
|
||||||
|
<h2>Volunteer</h2>
|
||||||
|
<section id="work">
|
||||||
|
{{#each resume.volunteer}}
|
||||||
|
<div class="item">
|
||||||
|
{{#organization}}
|
||||||
|
<h3 class="company">
|
||||||
|
{{.}}
|
||||||
|
</h3>
|
||||||
|
{{/organization}}
|
||||||
|
<div class="date">
|
||||||
|
{{#startDate}}
|
||||||
|
<span class="startDate">
|
||||||
{{.}}
|
{{.}}
|
||||||
</span>
|
</span>
|
||||||
{{/endDate}}
|
{{/startDate}}
|
||||||
|
{{#if endDate}}
|
||||||
|
<span class="endDate">
|
||||||
|
- {{endDate}}
|
||||||
|
</span>
|
||||||
|
{{else}}
|
||||||
|
<span class="endDate">
|
||||||
|
- Present
|
||||||
|
</span>
|
||||||
|
{{/if}}
|
||||||
</div>
|
</div>
|
||||||
{{#position}}
|
{{#position}}
|
||||||
<div class="position">
|
<div class="position">
|
||||||
@@ -164,15 +222,15 @@
|
|||||||
{{.}}
|
{{.}}
|
||||||
</span>
|
</span>
|
||||||
{{/startDate}}
|
{{/startDate}}
|
||||||
{{#endDate}}
|
{{#if endDate}}
|
||||||
<span class="endDate">
|
<span class="endDate">
|
||||||
- {{.}}
|
- {{endDate}}
|
||||||
</span>
|
</span>
|
||||||
{{else}}
|
{{else}}
|
||||||
<span class="endDate">
|
<span class="endDate">
|
||||||
- Present
|
- Present
|
||||||
</span>
|
</span>
|
||||||
{{/endDate}}
|
{{/if}}
|
||||||
</div>
|
</div>
|
||||||
{{#institution}}
|
{{#institution}}
|
||||||
<div class="institution">
|
<div class="institution">
|
||||||
@@ -189,6 +247,11 @@
|
|||||||
{{.}}
|
{{.}}
|
||||||
</div>
|
</div>
|
||||||
{{/studyType}}
|
{{/studyType}}
|
||||||
|
{{#gpa}}
|
||||||
|
<div class="gpa">
|
||||||
|
GPA: {{.}}
|
||||||
|
</div>
|
||||||
|
{{/gpa}}
|
||||||
{{#if courses.length}}
|
{{#if courses.length}}
|
||||||
<ul class="courses">
|
<ul class="courses">
|
||||||
{{#courses}}
|
{{#courses}}
|
||||||
@@ -221,6 +284,11 @@
|
|||||||
{{.}}
|
{{.}}
|
||||||
</div>
|
</div>
|
||||||
{{/awarder}}
|
{{/awarder}}
|
||||||
|
{{#summary}}
|
||||||
|
<div class="summary">
|
||||||
|
{{.}}
|
||||||
|
</div>
|
||||||
|
{{/summary}}
|
||||||
</div>
|
</div>
|
||||||
{{/each}}
|
{{/each}}
|
||||||
</section>
|
</section>
|
||||||
@@ -251,6 +319,11 @@
|
|||||||
<a href="{{.}}">Link</a>
|
<a href="{{.}}">Link</a>
|
||||||
</div>
|
</div>
|
||||||
{{/website}}
|
{{/website}}
|
||||||
|
{{#summary}}
|
||||||
|
<div class="summary">
|
||||||
|
{{.}}
|
||||||
|
</div>
|
||||||
|
{{/summary}}
|
||||||
</div>
|
</div>
|
||||||
{{/each}}
|
{{/each}}
|
||||||
</section>
|
</section>
|
||||||
@@ -282,6 +355,48 @@
|
|||||||
{{/each}}
|
{{/each}}
|
||||||
</section>
|
</section>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
|
|
||||||
|
{{#if resume.languages.length}}
|
||||||
|
<h2>Languages</h2>
|
||||||
|
<section id="interests">
|
||||||
|
{{#each resume.languages}}
|
||||||
|
<div class="item">
|
||||||
|
{{#language}}
|
||||||
|
<div class="language">
|
||||||
|
{{.}}
|
||||||
|
</div>
|
||||||
|
{{/language}}
|
||||||
|
{{#fluency}}
|
||||||
|
<div class="fluency">
|
||||||
|
{{.}}
|
||||||
|
</div>
|
||||||
|
{{/fluency}}
|
||||||
|
</div>
|
||||||
|
{{/each}}
|
||||||
|
</section>
|
||||||
|
{{/if}}
|
||||||
|
|
||||||
|
{{#if resume.interests.length}}
|
||||||
|
<h2>Interests</h2>
|
||||||
|
<section id="interests">
|
||||||
|
{{#each resume.interests}}
|
||||||
|
<div class="item">
|
||||||
|
{{#name}}
|
||||||
|
<div class="name">
|
||||||
|
{{.}}
|
||||||
|
</div>
|
||||||
|
{{/name}}
|
||||||
|
{{#if keywords.length}}
|
||||||
|
<ul class="keywords">
|
||||||
|
{{#keywords}}
|
||||||
|
<li>{{.}}</li>
|
||||||
|
{{/keywords}}
|
||||||
|
</ul>
|
||||||
|
{{/if}}
|
||||||
|
</div>
|
||||||
|
{{/each}}
|
||||||
|
</section>
|
||||||
|
{{/if}}
|
||||||
|
|
||||||
{{#if resume.references.length}}
|
{{#if resume.references.length}}
|
||||||
<h2>References</h2>
|
<h2>References</h2>
|
||||||
|
|||||||
Reference in New Issue
Block a user