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