-
Notifications
You must be signed in to change notification settings - Fork 8
/
publications_safeai_summary.html
24 lines (22 loc) · 1.12 KB
/
publications_safeai_summary.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
---
layout: default
title: SafeAI Publication Feed
permalink: /publications/safeai_summary.html
---
{% capture query %} item.projects contains 'safeai'{% endcapture %}
{% assign filtered_publications = site.publications | where_exp:"item", query %}
{% assign sorted_publications = filtered_publications | group_by:"year" | sort:"name" | reverse %}
<pre>
{% for year in sorted_publications %} {% assign sorted_publications_by_year = year.items | sort: "month" | reverse %} {% for publication in sorted_publications_by_year %}
{% if publication.paper %}
{% assign pub_link = publication.paper %}
{% unless pub_link contains 'http' %}
{% assign pub_link = 'papers/' | append: pub_link %}
{% endunless %}
{% else %}
{% assign pub_link = '' %}
{% endif %}
<a target="_blank" id="clicky" href="https://www.sri.inf.ethz.ch{{ publication.url }}">{{ publication.title }}</a>, <a href="{{ pub_link }}" target="_blank">{{ publication.venue }} {{ publication.year }}</a><br>
{{ publication.authors }}
<br><br>{% endfor %}{% endfor %}
</pre>