Add references and testimonials partials.

This commit is contained in:
hacksalot 2016-01-12 07:27:13 -05:00
parent 20f2721d9d
commit c807d6c7d5
3 changed files with 33 additions and 0 deletions

View File

@ -15,6 +15,9 @@
{{/if}}
</h3>
<span class="tenure">{{dateRange .}}</span>
{{#if keywords}}
| <span class="keywords">{{#each keywords}}{{{ . }}} {{/each}}</span>
{{/if}}
<p style="clear: both;">{{{ summary }}}</p>
{{#if highlights}}
<ul>

View File

@ -0,0 +1,15 @@
{{#section "references"}}
<hr>
<section id="awards">
<header>
<h2>{{{sectionTitle "references" "References"}}}</h2>
{{#> icon-references }}{{/icon-references}}
</header>
{{#each r.references}}
<div>
<h3><em>{{ name }}</em></h3>
{{ summary }}
</div>
{{/each}}
</section>
{{/section}}

View File

@ -0,0 +1,15 @@
{{#section "testimonials"}}
<hr>
<section id="awards">
<header>
<h2>{{{sectionTitle "testimonials" "Testimonials"}}}</h2>
{{#> icon-testimonials }}{{/icon-testimonials}}
</header>
{{#each r.testimonials}}
<div>
<h3><em>{{ name }}</em></h3>
{{{ quote }}}
</div>
{{/each}}
</section>
{{/section}}