Clean up template
This commit is contained in:
@@ -126,8 +126,8 @@
|
||||
{{#each resume.work}}
|
||||
<section class="item">
|
||||
<header>
|
||||
{{#if company}}
|
||||
<h3 class="name">{{company}}</h3>
|
||||
{{#if name}}
|
||||
<h3 class="name">{{name}}</h3>
|
||||
{{/if}}
|
||||
</header>
|
||||
{{#if position}}
|
||||
@@ -172,15 +172,20 @@
|
||||
<section class="experience">
|
||||
<h2>Projects</h2>
|
||||
{{#each resume.projects}}
|
||||
<section class="item">
|
||||
<header>
|
||||
{{#if name}}
|
||||
<h3 class="name">{{name}}</h3>
|
||||
<h3 class="name">
|
||||
{{#if url}}
|
||||
<a href="{{url}}">{{name}}</a>
|
||||
{{else}}
|
||||
{{name}}
|
||||
{{/if}}
|
||||
</h3>
|
||||
{{/if}}
|
||||
</header>
|
||||
{{#if summary}}
|
||||
{{#if description}}
|
||||
<div class="summary">
|
||||
<p>{{paragraphSplit summary}}</p>
|
||||
<p>{{paragraphSplit description}}</p>
|
||||
</div>
|
||||
{{/if}}
|
||||
{{#if highlights.length}}
|
||||
@@ -190,7 +195,6 @@
|
||||
{{/each}}
|
||||
</ul>
|
||||
{{/if}}
|
||||
</section>
|
||||
{{/each}}
|
||||
</section>
|
||||
{{/if}}
|
||||
|
||||
Reference in New Issue
Block a user