Skip to content

Commit

Permalink
Add projets
Browse files Browse the repository at this point in the history
  • Loading branch information
elupus committed Mar 11, 2021
1 parent 9717402 commit cf02f6c
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 0 deletions.
37 changes: 37 additions & 0 deletions app/views/components/projects.hbs
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
{{#if resume.projects.length}}
<div class="container work-container">
{{> title value="Projects"}}

{{#each resume.projects}}
<section class="item">
{{> section-header name=this.name }}

{{#if entity}}
<h4>{{entity}}</h4>
{{/if}}

{{#if description}}
<p class="summary">{{description}}</p>
{{/if}}

{{#if roles.length}}
<h6>Roles</h6>
<ul>
{{#each roles}}
<li>{{.}}</li>
{{/each}}
</ul>
{{/if}}

{{#if highlights.length}}
<h6>Highlights</h6>
<ul>
{{#each highlights}}
<li>{{.}}</li>
{{/each}}
</ul>
{{/if}}
</section>
{{/each}}
</div>
{{/if}}
1 change: 1 addition & 0 deletions app/views/resume.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
{{> summary}}
{{> work }}
{{> volunteer }}
{{> projects }}
{{> education }}
{{> awards }}
{{> publications }}
Expand Down

0 comments on commit cf02f6c

Please sign in to comment.