json-theme-even-fork/partials/references.hbs
Rafael Bardini 9da28d862a Use CSS grid
- Remove Bootstrap and Octicons
- Simplify styles and markup
- Add color and type scale custom properties
- Extract section templates to partials
- Validate rendered HTML
- Update test snapshots
2020-07-18 22:44:17 +02:00

20 lines
415 B
Handlebars

{{#if resume.references.length}}
<section id="references">
<h3>References</h3>
<div>
{{#each resume.references}}
{{#if reference}}
<blockquote>
<p>{{reference}}</p>
{{#name}}
<p>
<cite>{{.}}</cite>
</p>
{{/name}}
</blockquote>
{{/if}}
{{/each}}
</div>
</section>
{{/if}}