cleanup escaping

This commit is contained in:
Rioting Pacifist 2020-02-28 17:33:43 +00:00
parent 45d7754fdc
commit 92e75d8ed9
5 changed files with 8 additions and 8 deletions

View File

@ -5,7 +5,7 @@
<h4 class="title text-uppercase">About</h4>
<div class="card card-nested">
<div itemprop="description" class="content mop-wrapper">
<p>{{r.info.brief}}</p>
<p>{{{r.info.brief}}}</p>
</div>
</div>
</div>

View File

@ -8,11 +8,11 @@
{{#each r.education.history}}
<li class="card card-nested">
<div class="content">
<p class="clear-margin relative"><strong>{{area}}{{title}}{{#if studyType}} ({{studyType}}){{/if}},&nbsp;</strong><a href="{{url}}" target="_blank">{{institution}}</a></p>
<p class="clear-margin relative"><strong>{{{area}}}{{{title}}}{{#if studyType}} ({{{studyType}}}){{/if}},&nbsp;</strong><a href="{{url}}" target="_blank">{{{institution}}}</a></p>
{{> date}}
<div class="space-top labels">
{{#each curriculum}}
<span class="label label-keyword">{{this}}</span>
<span class="label label-keyword">{{{this}}}</span>
{{/each}}
</div>
{{> highlights}}

View File

@ -3,7 +3,7 @@
<div class="icon"><i class="fs-lg fa fa-building"></i><span class="mobile-title">Work Experience</span></div>
<div class="info">
<h4 class="title text-uppercase">Work Experience</h4>
<p>{{r.employment.summary}}</p>
<p>{{{r.employment.summary}}}</p>
<ul class="list-unstyled">
{{#each r.employment.history}}
<li class="card card-nested clearfix">

View File

@ -7,7 +7,7 @@
<ul class="list-unstyled">
{{#each r.interests}}
<li class="card card-nested">
<p><strong>{{name}}</strong></p>
<p><strong>{{{name}}}</strong></p>
{{{summary}}}
<div class="space-top labels">
{{#each keywords}}

View File

@ -1,16 +1,16 @@
<section class="col-md-3 card-wrapper profile-card-wrapper affix">
<div class="card profile-card"><div class="profile-pic-container">
<div class="card profile-card"><span class="profile-pic-container">
<div class="profile-pic">
{{#if r.info.image}}
<img data-src="holder.js/100x100" alt="{{{r.name}}}" src="{{{r.info.image}}}" itemprop="image" class="media-object img-circle center-block"/>
{{/if}}
</div>
<div class="name-and-profession text-center"><h3 itemprop="name"><b>{{{r.name}}}</b></h3><h5 itemprop="jobTitle" class="text-muted">{{r.info.label}}</h5></div></div>
<div class="name-and-profession text-center"><h3 itemprop="name"><b>{{{r.name}}}</b></h3><h5 itemprop="jobTitle" class="text-muted">{{{r.info.label}}}</h5></div></span>
<hr/>
<div class="contact-details clearfix">
{{#if r.location.city}}<div class="detail"><span class="icon"><i class="icon fs-lg fa fa-map-marker"></i></span><span class="info">{{#if r.location.address}}{{r.location.address}}, {{/if}}{{r.location.city}}{{#if r.location.region}}, {{r.location.region}}{{/if}}{{#if r.location.country}}, {{r.location.country}}{{/if}}</span></div>{{/if}}
<div class="detail"><span class="icon"><i class="icon fs-lg fa fa-phone"></i></span><span itemprop="telephone" class="info">{{r.contact.phone}}</span></div>
<div class="detail"><span class="icon"><i class="icon fs-lg fa fa-envelope-o"></i></span><span class="info"><a href="mailto:{{{r.contact.email}}}" itemprop="email" class="link-disguise">{{{r.contact.email}}}</a></span>
<div class="detail"><span class="icon"><i class="icon fs-lg fa fa-envelope-o"></i></span><span class="info" itemprop="email">{{{r.contact.email}}}</span>
</div>
<div class="detail"><span class="icon"><i class="icon fs-lg fa fa-link"></i></span><span class="info">{{{r.contact.website}}}</span></div>
<div class="detail"><span title="Languages I speak" class="icon"><i class="icon fs-lg fa fa-language"></i></span><span class="info">{{#each r.languages}}{{language}}{{#unless @last}}, {{/unless}}{{/each}}</span></div>