forked from ANSR-UofU/ANSR-UofU.github.io
-
Notifications
You must be signed in to change notification settings - Fork 2
/
products.html
69 lines (65 loc) · 2.61 KB
/
products.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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
---
layout: default
title: Products
permalink: /products.html
---
<div class="data-sets">
<h3>Available Data Sets</h3>
{% for dataset in site.data.datasets %}
<div class="set">
<h4 class="set-title"> <a href="{{ dataset.url }}">{{ dataset.name }}</a></h4>
<div class="set-description">
{{ dataset.description }}
</div>
<ul>
{% for reference in dataset.referto %}
{% for paper in site.data.papers %}
{% if paper.tag == reference %}
<li>
{% if paper.url %}
{{ paper.authors }}, <a href="{{ paper.url }}">{{ paper.title }}</a>, {{ paper.conference }}.
{% else %}
{{ paper.authors }}, "{{ paper.title }}", {{ paper.conference }}.
{% endif %}
{% if paper.extra_title %}
(<a href="{{ paper.extra_url }}">{{ paper.extra_title }}</a>).
{% endif %}
</li>
{% endif %}
{% endfor %}
{% endfor %}
</ul>
</div>
<hr>
{% endfor %}
</div>
<div class="tools">
<h3>Available Tools</h3>
{% for tool in site.data.tools %}
<div class="tool">
<h4 class="tool-title"> <a href="{{ tool.url }}">{{ tool.name }}</a></h4>
<div class="tool-description">
{{ tool.description }}
</div>
<ul>
{% for reference in tool.referto %}
{% for paper in site.data.papers %}
{% if paper.tag == reference %}
<li>
{% if paper.url %}
{{ paper.authors }}, <a href="{{ paper.url }}">{{ paper.title }}</a>, {{ paper.conference }}.
{% else %}
{{ paper.authors }}, "{{ paper.title }}", {{ paper.conference }}.
{% endif %}
{% if paper.extra_title %}
(<a href="{{ paper.extra_url }}">{{ paper.extra_title }}</a>).
{% endif %}
</li>
{% endif %}
{% endfor %}
{% endfor %}
</ul>
</div>
<hr>
{% endfor %}
</div>