Add speaking section

This commit is contained in:
Antonio Ruberto
2016-10-15 21:33:39 -04:00
parent ce00dad2ac
commit 3de17aa3e1
4 changed files with 20 additions and 2 deletions

View File

@ -8,6 +8,7 @@
{{> education}}
{{> service}}
{{> writing}}
{{> speaking}}
{{> recognition}}
{{> interests}}
</div>

View File

@ -0,0 +1,17 @@
{{#section 'speaking'}}
<hr>
<section class="row">
<h3 class="{{headerClass}}"><span class="fa fa-fw fa-comment"></span>&nbsp;{{{sectionTitle "speaking" "Speaking"}}}</h3>
<div class="{{contentClass}}">
{{#each r.speaking}}
{{#if url}}
<h4><a href="{{{url}}}"><strong>{{title}}</strong></a>, {{event}}</h4>
{{else}}
<h4><strong>{{title}}</strong>, {{event}}</h4>
{{/if}}
Presented on: {{formatDate safe.date 'YYYY-MM-DD'}}
{{#unless @last}}<div>&nbsp;</div>{{/unless}}
{{/each}}
</div>
</section>
{{/section}}