1
0
mirror of https://github.com/JuanCanham/fresh-themes.git synced 2025-06-06 04:16:15 +01:00

Fix: Modern: Double-encoding issue.

Fixes hacksalot/hackmyresume#57.
This commit is contained in:
hacksalot
2016-01-04 15:07:46 -05:00
parent 06016b8883
commit 4954079a6f
2 changed files with 8 additions and 9 deletions

View File

@ -73,7 +73,7 @@
<span class="fa fa-lg fa-building"></span>
{{#each r.employment.history}}
{{#if url}}
<h4><span class="res-label">{{ position }}</span>, <a href="{{ url }}">{{ employer }}</a></h4>
<h4><span class="res-label">{{ position }}</span>, <a href="{{{ url }}}">{{ employer }}</a></h4>
{{else}}
<h4><span class="res-label">{{ position }}</span>, <span class="defunct">{{ employer }}</span></h4>
{{/if}}
@ -82,7 +82,7 @@
{{#if proj.highlights}}
<ul>
{{#each highlights}}
<li>{{ this }}</li>
<li>{{{ this }}}</li>
{{/each}}
</ul>
{{/if}}
@ -104,7 +104,7 @@
{{#if courses}}
<ul>
{{#each courses}}
<li>{{ this }}</li>
<li>{{{ this }}}</li>
{{/each}}
</ul>
{{/if}}
@ -131,7 +131,7 @@
{{#if highlights}}
<ul>
{{#each highlights}}
<li>{{ this }}</li>
<li>{{{ this }}}</li>
{{/each}}
</ul>
{{/if}}