Skip to content

Commit f122bb7

Browse files
committed
added project section to template
1 parent b7cc0ad commit f122bb7

File tree

2 files changed

+56
-0
lines changed

2 files changed

+56
-0
lines changed

resume.handlebars

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -229,6 +229,58 @@
229229
</section>
230230
{{/if}}
231231

232+
{{#if resume.projects.length}}
233+
<section id="projects">
234+
<h2>Projects</h2>
235+
{{#each resume.projects}}
236+
<div class="item">
237+
{{#if name}}
238+
<h3 class="project_name">
239+
{{#if url}}
240+
<a href="{{url}}" target="_blank">{{name}}</a>
241+
{{else}}
242+
{{name}}
243+
{{/if}}
244+
</h3>
245+
{{/if}}
246+
247+
<div class="split">
248+
{{#if entity}}
249+
<div class="project_entity">
250+
{{entity}}
251+
</div>
252+
{{/if}}
253+
254+
<div class="project_date">
255+
{{#if startDate}}
256+
{{{date startDate}}} - {{{date endDate}}}
257+
{{/if}}
258+
</div>
259+
260+
{{#if url}}
261+
<div class="project_website">
262+
{{{link url}}}
263+
</div>
264+
{{/if}}
265+
</div>
266+
267+
{{#if description}}
268+
<div class="summary">
269+
<p>{{{markdown description}}}</p>
270+
</div>
271+
{{/if}}
272+
{{#if highlights.length}}
273+
<ul class="highlights">
274+
{{#each highlights}}
275+
<li>{{{markdown .}}}</li>
276+
{{/each}}
277+
</ul>
278+
{{/if}}
279+
</div>
280+
{{/each}}
281+
</section>
282+
{{/if}}
283+
232284
{{#if resume.education.length}}
233285
<section id="education">
234286
<h2>Education</h2>

style.css

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,10 @@ header h2 {
8282
margin-right: 2em;
8383
}
8484

85+
.project_date {
86+
margin-right: 2em;
87+
}
88+
8589
.website,
8690
.email,
8791
.phone,

0 commit comments

Comments
 (0)