Skip to content

Commit

Permalink
reposition dash to accommodate missing end dates
Browse files Browse the repository at this point in the history
  • Loading branch information
zenahirsch committed Feb 15, 2016
1 parent 1c2415f commit ba0a1e1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions resume.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@
</span>
{{#if startDate}}
<span class='date'>
{{#if startDate}}{{startDate}}{{/if}}{{#if endDate}} &mdash; {{endDate}}{{/if}}
{{#if startDate}}{{startDate}}{{/if}} &mdash; {{#if endDate}}{{endDate}}{{else}}Present{{/if}}
</span>
{{/if}}
</div>
Expand Down Expand Up @@ -187,7 +187,7 @@
<span class='title'>{{#if organization}}{{organization}}{{/if}}{{#if position}}, {{position}}{{/if}}</span>
{{#if startDate}}
<span class='date'>
{{#if startDate}}{{startDate}}{{/if}}{{#if endDate}} &mdash; {{endDate}}{{else}}Present{{/if}}
{{#if startDate}}{{startDate}}{{/if}} &mdash; {{#if endDate}}{{endDate}}{{else}}Present{{/if}}
</span>
{{/if}}
{{#if website}}
Expand Down Expand Up @@ -221,7 +221,7 @@
</span>
{{#if startDate}}
<span class='date'>
{{#if startDate}}{{startDate}}{{/if}}{{#if endDate}} &mdash; {{endDate}}{{else}}Present{{/if}}
{{#if startDate}}{{startDate}}{{/if}} &mdash; {{#if endDate}}{{endDate}}{{else}}Present{{/if}}
</span>
{{/if}}
<div class=''>
Expand Down

0 comments on commit ba0a1e1

Please sign in to comment.