Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
78 changes: 76 additions & 2 deletions resume.template
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,12 @@
<li>{{region}}</li>
</ul>
{{/if}}
{{#if visa}}
<ul>
<li>Permissions</li>
<li>{{visa}}</li>
</ul>
{{/if}}
</div>
</div>
</section>
Expand All @@ -109,7 +115,7 @@
{{#if endDate}}
<p>{{startDate}} till {{endDate}}</p>
{{else}}
<p>{{startDate}} till today</p>
<p>{{startDate}} till present</p>
{{/if}}
{{/if}}
</div>
Expand All @@ -119,7 +125,7 @@
<p style="margin-top:2.4em;">
{{else}}
<p>
{{/if}}
{{/if}}
{{#ifCond website '&&' company}}
<strong>{{position}}</strong>
at <strong><a href="{{website}}">{{company}}:</a></strong>
Expand All @@ -133,6 +139,11 @@
{{/ifCond}}
</p>
{{/ifCond}}
{{#if location}}
<p>
<span>{{location}}</span>
</p>
{{/if}}
{{#if summary}}
<p>{{summary}}</p>
{{/if}}
Expand All @@ -147,6 +158,68 @@
{{/foreach}}
{{/if}}

{{#if resume.projects.length}}
{{#foreach resume.projects}}
{{#if $first}}
<section class="content">
{{else}}
<section class="content work-content">
{{/if}}
<div class="row">
<div class="content-cat big-text">
{{#if $first}}
Projects
{{/if}}
{{#if startDate}}
{{#if endDate}}
<p>{{startDate}} till {{endDate}}</p>
{{else}}
<p>{{startDate}} till today</p>
{{/if}}
{{/if}}
</div>
<div class="content-text work-listing education-listing">

{{#if $first}}
<!-- <p> -->
<p style="margin-top:2.4em;">
{{else}}
<p>
{{/if}}
{{#if name}}
<strong>
{{name}}
</strong>
{{/if}}
{{#if website}}
<strong><a href="{{website}}"> - {{website}}</a></strong>
{{/if}}
</p>

{{#if description}}
<p>{{description}}</p>
{{/if}}
{{#if highlights.length}}
{{#each highlights}}
<p class="highlight">{{.}}</p>
{{/each}}
{{/if}}
<div class="content-text skills-listing">
<p>
{{#if keywords.length}}
{{#commalist keywords}}{{.}}{{/commalist}}
{{/if}}
</p>
</div>

</div>
</div>
</section>
{{/foreach}}
{{/if}}



{{#if resume.volunteer.length}}
{{#each resume.volunteer}}
<section class="content">
Expand Down Expand Up @@ -199,6 +272,7 @@
<div class="content-text work-listing education-listing">
{{#if institution}}
{{#if $first}}
<!-- <p class="heading">{{institution}}</p> -->

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

accidentally added comment

Suggested change
<!-- <p class="heading">{{institution}}</p> -->

<p class="heading" style="margin-top:2.35em;">{{institution}}</p>
{{else}}
<p class="heading">{{institution}}</p>
Expand Down