json-theme-even-fork/partials/contact.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

24 lines
409 B
Handlebars

<section id="contact">
<h3>Contact</h3>
<div class="grid-list">
{{#email}}
<div>
<h6>Email</h6>
<a href="mailto:{{.}}">{{.}}</a>
</div>
{{/email}}
{{#phone}}
<div>
<h6>Phone</h6>
{{.}}
</div>
{{/phone}}
{{#url}}
<div>
<h6>Website</h6>
<a href="{{.}}">{{.}}</a>
</div>
{{/url}}
</div>
</section>