Skip to content

Commit

Permalink
closing #69
Browse files Browse the repository at this point in the history
  • Loading branch information
yannickwurm committed Mar 12, 2018
1 parent 23b9f58 commit 5ab00eb
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions publications/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -664,9 +664,17 @@ <h3>Publications <small>See also <a href="http://scholar.google.co.uk/citations?
<ol>
{% for paper in page.papers %}
{% if paper.highlight %}
<li value="{{ forloop.rindex }}" style="margin-bottom: 8px; padding: 5px; background: #eee" class="publication" data-tag="{{ paper.tag }}">
{% if paper.img %}
<li value="{{ forloop.rindex }}" style="margin-bottom: 8px; padding: 5px; background: #eee; padding-right:{{ paper.img_width }}px; " class="publication" data-tag="{{ paper.tag }}">
{% else %}
<li value="{{ forloop.rindex }}" style="margin-bottom: 8px; padding: 5px; background: #eee" class="publication" data-tag="{{ paper.tag }}">
{% endif %}
{% else %}
<li value="{{ forloop.rindex }}" style="margin-bottom: 3px; padding: 5px" class="publication" data-tag="{{ paper.tag }}">
{% if paper.img %}
<li value="{{ forloop.rindex }}" style="margin-bottom: 3px; padding: 5px; padding-right:{{ paper.img_width }}px;" class="publication" data-tag="{{ paper.tag }}">
{% else %}
<li value="{{ forloop.rindex }}" style="margin-bottom: 3px; padding: 5px" class="publication" data-tag="{{ paper.tag }}">
{% endif %}
{% endif %}
{% if paper.img %}
<a href="http://dx.doi.org/{{ paper.doi }}">
Expand Down

0 comments on commit 5ab00eb

Please sign in to comment.