Skip to content

Commit

Permalink
revert inappropriate escapings
Browse files Browse the repository at this point in the history
  • Loading branch information
cgcostume committed Mar 10, 2016
1 parent 002383e commit 14b5f1f
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion _data/projects.json
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@
} ],
},
{ "key" : "vissoft2014",
"title" : "Publicity & Web Chair",
"title" : "Publicity & Web Chair",
"date" : "2014-08-01",

"caption" : {
Expand Down
2 changes: 1 addition & 1 deletion _data/publications.json
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@
"published" : "GPU Pro 7: Advanced Rendering Techniques",

"caption" : {
"en" : "This article will be release in April 2016.<br>More details and supplemental material will be provided soon...",
"en" : "This article will be release in April 2016.More details and supplemental material will be provided soon...",
"de" : "Dieser Artikel erscheint im April.<br>Weitere Details und ergänzende Materialien folgen..." },

"thumbnail" : "2016-multi-frame-sampling.jpg",
Expand Down
2 changes: 1 addition & 1 deletion _includes/header.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<div class="col-md-8 col-md-offset-2">
<h1>{{ header.heading.[page.lang] | escape }}</h1>
<p class="lead">{{ header.lead.[page.lang] | escape }}</p>
<p class="text-xs-left">{{ header.about.[page.lang] | escape }}</p>
<p class="text-xs-left">{{ header.about.[page.lang] }}</p>
</div>
</div>
</header>
2 changes: 1 addition & 1 deletion _includes/project.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
{% assign thumbnail_flickr = p.flickr %}
{% include thumbnail.html %}
<h4>{{ p.title | escape }}</h4>
<p>{{ p.caption.[page.lang] | escape }}</p>
<p>{{ p.caption.[page.lang] }}</p>
<p>{% if p.bibtex %}<a data-toggle="modal" href="#bibtex-{{ p.key }}">BibTex</a>{% if p.downloads %}, {% endif %}{% endif %}
{% if p.downloads %}{% for download in p.downloads %}<a {% if download.video %}class="video-{{ download.video }}" {% endif %}href="{{ download.href }}">{{ download.desc }}</a>{% if download != p.downloads.last %}, {% endif %}{% endfor %}{% endif %}&nbsp;</p>
</div>
4 changes: 2 additions & 2 deletions _includes/publications.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ <h1>{{ site.data.publications.heading.[page.lang] | escape }}</h1>
</div>
<div class="col-sm-9">
<h4>{{ p.title | escape }}</h4>
<p>{% for author in p.authors %}{% if author == p.authors.last %}and {% endif %}{{ author }}{% if p.authors.size > 2 and author != p.authors.last %},{% endif %} {% endfor %}<br><span class="text-muted">{{ p.published }} {{ p.date | date: '%Y' }}{% if p.lead_note %}, {{ p.lead_note | escape }}{% endif %}</span></p>
<p>{{ p.caption.[page.lang] | escape }}</p>
<p>{% for author in p.authors %}{% if author == p.authors.last %}and {% endif %}{{ author }}{% if p.authors.size > 2 and author != p.authors.last %},{% endif %} {% endfor %}<br><span class="text-muted">{{ p.published }} {{ p.date | date: '%Y' }}{% if p.lead_note %}, {{ p.lead_note }}{% endif %}</span></p>
<p>{{ p.caption.[page.lang] }}</p>
<p>
{% if p.bibtex %}<a data-toggle="modal" href="#bibtex-{{ p.key }}">BibTeX</a>{% if p.downloads %}, {% endif %}{% endif %}
{% if p.downloads %}{% for download in p.downloads %}<a {% if download.video %}class="video-{{ download.video }}" {% endif %}href="{{ download.href }}">{{ download.desc | escape }}</a>{% if download != p.downloads.last %}, {% endif %}{% endfor %}{% endif %}
Expand Down

0 comments on commit 14b5f1f

Please sign in to comment.