Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -102,4 +102,4 @@ DEPENDENCIES
webrick (~> 1.7)

BUNDLED WITH
2.7.2
2.7.2
4 changes: 2 additions & 2 deletions _authors/ulfarsson.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ status: member
short_name: ulfarsson
first_name: Henning
name: Henning Ulfarsson
position: Assistant Professor, Reykjavik University
position: Associate Professor, Reykjavik University
---
Henning is an assistant Professor in the [School of Computer Science](https://en.ru.is/scs/)
Henning is an Associate Professor in the [Department of Computer Science](https://www.ru.is/en/departments/dcs)
at [Reykjavik University](https://en.ru.is) in Iceland. His CV can be accessed [here]({{site.baseurl}}/assets/cvs/CV-Henning.pdf).

- [arXiv papers](https://arxiv.org/a/ulfarsson_h_1.html)
Expand Down
26 changes: 25 additions & 1 deletion index.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,4 +36,28 @@ mathematics and computer science.
</li>
{% endif %}
{% endfor %}
</ul>
</ul>

### Recent Papers
<div class="recent-papers">
{% assign sorted_papers = site.papers | sort: 'path' | reverse %}
{% for paper in sorted_papers limit: 3 %}
<div class="paper-preview" style="margin-bottom: 1.5em; padding: 1em; border-left: 3px solid #828282;">
<h4 style="margin-bottom: 0.5em;"><a href="{{ site.baseurl }}{{ paper.url }}">{{ paper.title }}</a></h4>
<p style="margin-bottom: 0.5em; font-style: italic; color: #666;">
{% if paper.journal %}{{ paper.journal }}{% endif %}
{% if paper.date %} • {{ paper.date | date: "%B %Y" }}{% endif %}
</p>
<p style="margin-bottom: 0.5em;">
{% if paper.authors %}
Authors:
{% for author_id in paper.authors %}
{% assign author = site.authors | where: "short_name", author_id | first %}
{% if author %}{{ author.name }}{% else %}{{ author_id }}{% endif %}{% unless forloop.last %}, {% endunless %}
{% endfor %}
{% endif %}
</p>
<p>{{ paper.content | strip_html | truncatewords: 30 }}</p>
</div>
{% endfor %}
</div>